/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #1a252f;
    color: #ecf0f1;
    font-size: 0.9rem;
    padding: 8px 0;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #3498db;
    font-weight: bold;
}

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #2c3e50;
}
.logo-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}
.main-nav ul {
    display: flex;
    gap: 25px;
}
.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
    color: #0056b3;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), url('https://images.pexels.com/photos/2219024/pexels-photo-2219024.jpeg?auto=compress&cs=tinysrgb&w=1200') no-repeat center center/cover;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #ecf0f1;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}
.btn-primary {
    background-color: #e67e22;
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #d35400;
}
.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}
.btn-lg {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Sections */
.section {
    padding: 70px 0;
}
.bg-light {
    background-color: #f8f9fa;
}
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}
.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}
.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}
.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.align-center {
    align-items: center;
}

/* Cards */
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 4px solid #0056b3;
}
.card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2c3e50;
}
.card p {
    color: #666666;
}

/* Check List */
.check-list div {
    margin-bottom: 12px;
    font-weight: 500;
    color: #2c3e50;
}

/* CTA Banner */
.cta-banner {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

/* Footer */
.site-footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 50px 0 20px 0;
}
.site-footer h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.site-footer p, .site-footer a {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: block;
}
.site-footer a:hover {
    color: #ffffff;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e67e22;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.mobile-sticky-cta a {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
}

@media(max-width: 768px) {
    .main-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}
