/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background-color: #e6dfd5;
    scroll-padding-top: 100px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: #e6dfd5;
    border-bottom: 1px solid #cfc6b7;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-top {
    padding: 20px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #073dc8;
    line-height: 1;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    transform: scale(2.8);
    transform-origin: left center;
}

.logo a:hover {
    color: #052f97;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #073dc8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #073dc8 0%, #032b93 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Content Section */
.content {
    padding: 60px 0;
    background-color: #e6dfd5;
}

.content-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #111;
    font-weight: 400;
}

/* Footer Styles */
footer {
    background-color: #032b93;
    color: #f3f5ff;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-top: 20px;
    color: #f3f5ff;
    text-transform: uppercase;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column {
    font-size: 13px;
    color: #e6dfd5;
    line-height: 1.8;
    font-weight: 400;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column a {
    color: #e6dfd5;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0b49d1;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #021f6f;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1f3da8;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    font-size: 13px;
    color: #e6dfd5;
    line-height: 1.8;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-box {
        padding: 25px;
    }

    .content-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 15px;
    }

    .main-nav ul {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
