* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    background: #fafafa;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-link {
    color: #1e3c72;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link:active {
    color: #667eea;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #216c4e 0%, #b4c6e3 100%);
    padding: 60px 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3c72;
    text-align: center;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
    background: white;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e3c72;
}

.feature-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.features-image {
    text-align: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: contain;
}

/* Media Section */
.media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.media-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.media-image-left,
.media-image-right {
    text-align: center;
}

.media-image-left img,
.media-image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.media-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-item h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 600;
}

.media-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: white;
}

.privacy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.privacy-image {
    text-align: center;
}

.privacy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: contain;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-feature {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-feature:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.privacy-feature .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.privacy-feature .text h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 600;
}

.privacy-feature .text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #386154 0%, #2a9871 100%);
    color: white;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.email-link:hover {
    background: white;
    color: #1e3c72;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .media-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .media-image-left,
    .media-image-right {
        order: -1;
    }

    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .contact-box h2 {
        font-size: 1.8rem;
    }

    .email-link {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
}
