* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inika', sans-serif;
    background-color: #FFDFDF;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAVIGATION */
nav {
    background: linear-gradient(to right, #f370ff, #d257e6);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav a {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}


.nav-links {
    display: flex;
    gap: 60px;
}


.content-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    gap: 80px;
}


.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


.text-container {
    flex: 2;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}

strong {
    font-size: 18px;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .nav-links {
        gap: 30px;
    }

    .content-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .image-container,
    .text-container {
        width: 100%;
        text-align: center;
    }

    .image-container img {
        max-width: 250px;
    }
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 10px;
    }

    .content-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        align-items: center;
    }

    .image-container img {
        max-width: 220px;
    }

    .text-container {
        text-align: center;
    }
}
