* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #60c9dc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    width: 100%;
    background: #fff;
}

.top-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.brand {
    margin: 0;
}

.brand .logo {
    height: 40px;
    width: auto;
}

.navbar {
    background: linear-gradient(110deg, #3b0e49 70%, #60c9dc 70%);
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin-right: 4rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    background-color: rgba(229, 65, 96, 0.2);
}

.nav-links a.active {
    background-color: #e54160;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex: 1;
}

.image-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

figure {
    margin: 0;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: translateY(-5px);
}

.text-block h2 {
    color: #3b0e49;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.text-block p {
    margin-bottom: 1.5rem;
    color: #333;
}

.learn-more {
    background-color: #e54160;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background-color: #3b0e49;
    transform: translateY(-2px);
}

.learn-more.clicked {
    transform: scale(0.95);
}

.main-footer {
    background: #3b0e49;
    color: white;
    padding: 3rem 0 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #60c9dc;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #60c9dc;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e54160;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e54160;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul li i {
        width: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
        padding: 1rem;
        display: flex;
        justify-content: flex-end;
    }

    .hamburger {
        display: block;
        margin-left: auto;
        z-index: 100;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #3b0e49;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        margin: 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }

    .content {
        flex-direction: column-reverse;
        padding: 1rem;
        margin: 1rem auto;
    }

    .text-content, .image-gallery {
        gap: 1rem;
    }

    .navbar {
        background: #3b0e49;
    }
}