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

:root {
    --primary-navy: #1a2332;
    --primary-amber: #f4a261;
    --secondary-teal: #2a9d8f;
    --accent-coral: #e76f51;
    --bg-cream: #f9f7f3;
    --bg-light: #ffffff;
    --text-dark: #1a2332;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border-color: #e2d9d1;
    --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.16);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

a {
    color: var(--secondary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-amber);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d3d54 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.4rem;
    color: var(--bg-cream);
    margin-bottom: 0.2rem;
}

.logo-text .domain {
    font-size: 0.85rem;
    color: var(--primary-amber);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--bg-cream);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-amber);
    border-bottom-color: var(--primary-amber);
}

.btn-nav {
    background: var(--primary-amber);
    color: var(--primary-navy) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    border: none !important;
}

.btn-nav:hover {
    background: var(--accent-coral);
    color: var(--bg-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-amber);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d3d54 50%, var(--secondary-teal) 100%);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(249,247,243,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 162, 97, 0.2);
    color: var(--primary-amber);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-amber);
}

.hero-title {
    font-size: 3rem;
    color: var(--bg-cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(249, 247, 243, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-amber);
    font-family: 'Manrope', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(249, 247, 243, 0.8);
    margin-top: 0.3rem;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d3d54 100%);
    color: var(--bg-cream);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--primary-amber);
    margin-bottom: 1rem;
}

.footer-domain {
    color: var(--primary-amber);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(249, 247, 243, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: rgba(249, 247, 243, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(249, 247, 243, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-amber);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.social-links a {
    color: rgba(249, 247, 243, 0.8);
    font-size: 0.95rem;
}

.social-links a:hover {
    color: var(--primary-amber);
}

.footer-bottom {
    border-top: 1px solid rgba(249, 247, 243, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(249, 247, 243, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    font-style: italic;
    margin-top: 1rem !important;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 0 4rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

