@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    nav a {
        font-size: 16px;
        padding: 5px;
    }

    .container {
        width: 95%;
        padding: 10px;
    }

    .info-section {
        flex-direction: column;
        padding: 15px;
    }

    .info-section:nth-child(even) {
        flex-direction: column;
    }

    .image-box {
        width: 100%;
        margin: 10px 0;
    }

    .image-box img {
        width: 100%;
        height: auto;
    }

    .info-section .text {
        padding: 10px 0;
    }

    .footer {
        padding: 5px;
        font-size: 12px;
    }

    .hero-section {
        height: 60vh;
    }

    .hero-text {
        font-size: 20px;
        padding: 10px;
    }

    .hero-text::before {
        width: 90%;
        height: 90%;
    }

    .info-contact {
        padding: 15px;
        font-size: 14px;
    }

    .profile-card {
        flex-direction: column;
        padding: 15px;
    }

    .profile-card img {
        width: 100%;
        margin: 0 0 15px 0;
    }
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1e1e1e;
    padding: 10px 20px;
}

header img {
    height: 50px;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: #f1c40f;
    text-decoration: none;
    font-size: 18px;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
    background-color: #1e1e1e;
}

.profile-card {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-card img {
    width: 200px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}

.profile-card p {
    flex: 1;
}

.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-section:nth-child(even) {
    flex-direction: row-reverse;
}

.info-section img {
    margin: 0 20px;
}

.info-section .text {
    flex: 1;
}

.info-section h2 {
    color: #f1c40f;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.info-contact {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #222;
    border-radius: 10px;
}

.image-box {
    width: 200px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
}

.image-box img {
    width: 100%;
    height: auto;
}

@media (min-width: 769px) {
    .hero-section {
        position: relative;
        width: 100%;
        height: calc(100vh - 80px);
        background-image: url('img/duo.jpg');
        background-size: cover;
        background-position: center top;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 150px;
    }

    .hero-text {
        position: absolute;
        top: calc(50% + 200px);
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        font-size: 26px;
        font-family: Arial, sans-serif;
        z-index: 2;
    }
}

.hero-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        position: relative;
        width: 100%;
        height: calc(100vh - 80px);
        background-image: url('img/duo.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-text {
        position: absolute;
        text-align: center;
        color: #fff;
        font-size: 26px;
        font-family: Arial, sans-serif;
        z-index: 2;
    }

    .hero-text::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        filter: blur(10px);
        z-index: 1;
    }
}
