* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a { 
    text-decoration: none; 
    color: inherit; 
}

header {
    background: #0a192f;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 120px; 
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover .logo-img {
    opacity: 0.9;
    transform: scale(1.02);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li { 
    margin-left: 20px; 
}

nav ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover { 
    color: #fff; 
}

nav .btn {
    background: #d4af37;
    color: #0a192f;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('hero.png');
    background-size: cover;
    background-position: center 25%; 
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badges {
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 0 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #0a192f;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

.cta-button:hover { 
    transform: scale(1.05);
    background: #c5a02e;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.cta-button.secondary:hover {
    background: #d4af37;
    color: #0a192f;
}

.about { 
    padding: 4rem 0; 
    background: #fff; 
    text-align: center; 
}

.about h2 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    color: #0a192f; 
}

.lead { 
    font-size: 1.2rem; 
    color: #666; 
    margin-bottom: 2rem; 
}

.services { 
    padding: 4rem 0; 
    background: #f4f4f4; 
}

.services h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 3rem; 
    color: #0a192f; 
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #d4af37;
}

.service-card i {
    font-size: 2.5rem;
    color: #0a192f;
    margin-bottom: 1rem;
}

.service-card h3 { 
    margin-bottom: 1rem; 
    color: #0a192f; 
}

.service-card ul {
    list-style: none;
    text-align: left;
    padding-left: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "✓";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact { 
    padding: 4rem 0; 
    background: #0a192f; 
    color: #fff; 
    text-align: center; 
}

.contact h2 { 
    margin-bottom: 1rem; 
}

.contact p { 
    margin-bottom: 2rem; 
}

footer { 
    background: #050d1a; 
    color: #777; 
    padding: 2rem 0; 
    text-align: center; 
}

.disclaimer {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    nav ul { display: none; }
    .container { width: 95%; }
    
    .logo-img {
        height: 70px;
    }
}
