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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    flex: 1;
}

.logo {
    height: 180px;
    width: auto;
    max-width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: #389ab3;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #183a4c;
}

.cta-button-large {
    background-color: #389ab3;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button-large:hover {
    background-color: #183a4c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #389ab3 0%, #183a4c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(56, 154, 179, 0.3);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    color: #183a4c;
    padding: 20px 20px 10px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 50px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 48px;
    color: #389ab3;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    color: #389ab3;
    margin-bottom: 15px;
}

.feature p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 50px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 42px;
    color: #389ab3;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 24px;
    color: #389ab3;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #389ab3;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.contact-item a:hover {
    color: #183a4c;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Ideal Events Section */
.ideal-events {
    padding: 80px 0;
    background-color: #ffffff;
}

.ideal-events h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    background-color: #389ab3;
    color: white;
}

.event-item i {
    font-size: 48px;
    color: #389ab3;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.event-item:hover i {
    color: white;
}

.event-item h3 {
    font-size: 22px;
    color: #183a4c;
    margin-bottom: 15px;
}

.event-item:hover h3 {
    color: white;
}

.event-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.event-item:hover p {
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.how-it-works h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 50px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    background-color: #389ab3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    color: #183a4c;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq h2 {
    font-size: 36px;
    color: #183a4c;
    margin-bottom: 50px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 20px;
    color: #389ab3;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #183a4c;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo {
        height: 80px;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        margin-top: 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 18px;
    }

    .about h2,
    .services h2,
    .why-choose-us h2,
    .ideal-events h2,
    .how-it-works h2,
    .faq h2,
    .contact h2 {
        font-size: 28px;
    }

    .services-grid,
    .features-grid,
    .events-grid,
    .steps-grid,
    .faq-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero {
        padding: 60px 0;
    }

    .about,
    .services,
    .why-choose-us,
    .ideal-events,
    .how-it-works,
    .faq,
    .contact {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

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

    .cta-button-large {
        padding: 12px 20px;
        font-size: 16px;
    }

    .about h2,
    .services h2,
    .why-choose-us h2,
    .ideal-events h2,
    .how-it-works h2,
    .faq h2,
    .contact h2 {
        font-size: 24px;
    }
}