body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f9fb;
    color: #111;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}
header {
    background: #181e29;
    color: #fff;
    padding: 12px 0;
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 52px;
}
nav {
    flex: 1;
}
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    font-weight: 500;
    transition: color 0.14s;
}
.nav-menu a:hover, .header-btns a:hover {
    color: #ff7c22;
}
.header-btns .btn {
    background: #fff;
    color: #181e29;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    margin-left: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.header-btns .accent {
    background: #ff7c22;
    color: #fff;
}
.header-btns .btn:hover {
    background: #2196f3;
    color: #fff;
}

/* Dropdown menu styling */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn::after {
    content: ' ▼';
    font-size: 0.85em;
    color: #fff;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #232a39;
    min-width: 180px;
    box-shadow: 0 4px 12px #0002;
    z-index: 10;
}
.dropdown-content a {
    color: #fff;
    padding: 12px 20px;
    display: block;
    text-align: left;
    transition: background 0.18s;
}
.dropdown-content a:hover {
    background: #ff7c22;
    color: #fff;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.hero {
    background: linear-gradient(90deg, #181e29 70%, #ff7c22 100%);
    color: #fff;
    padding: 68px 0 40px 0;
    text-align: left;
}
.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.14rem;
    margin-bottom: 20px;
}
.hero .btn {
    background: #ff7c22;
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.18s;
}
.hero .btn:hover {
    background: #2196f3;
}
footer {
    background: #181e29;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
}