body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F7D0D4;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #4A111F;
    padding: 10px 20px;
    height: auto;
    border-bottom: 10px solid #3A0D17;
}

.navbar .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.navbar .left .logo {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.navbar .left p {
    color: #F7D0D4;
    font-size: 30px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin: 0;
}

.navbar .right {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.fees-container {
    background-color: #4A111F;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    display: inline-block;
    margin: auto;
}

.fees-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 270px;
}

.fees-boxes {
    
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.fees-box h2 {
    color: #4A111F;
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin: 0;
}

.fees-box::after {
    content: none;
}

.fees-box p {
    content: none;
}

.fees-box {
    background-color: #F7D0D4;
    border-radius: 10px;
    padding: 20px;
    height: 45px;
    width: 170px;
    text-align: center;
    position: relative;
}

.fees-container h1 {
    color: #F7D0D4;
    font-family: Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 0px;
    position: relative;
}

.fees-container h1::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: #F7D0D4;
    margin: 10px auto 0;
    border-radius: 2px;
}

.navbar .right button {
    background-color: transparent;
    border: 2px solid #3A0D17;
    color: #F7D0D4;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

.navbar .right button:hover {
    background-color: #F7D0D4;
    color: #4A111F;
}

.delegation-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 50px auto;
    padding: 10px;
}

.delegation-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 90%;
}

.delegation-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.delegation-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    text-align: center;
}

.delegation-content h1 {
    font-size: 28px;
    font-weight: bold;
    color: #4A111F;
    margin-bottom: 15px;
}

.apply-button {
    background-color: #4A111F;
    color: #F7D0D4;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.apply-button:hover {
    background-color: #F7D0D4;
    color: #4A111F;
}

.contact-bar {
    background-color: #4A111F;
    padding: 10px 0;
    text-align: center;
}

.contact-bar p {
    color: #F7D0D4;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.social-icon {
    width: 40px;
    height: auto;
}

.footer {
    background-color: #4A111F;
    color: #F7D0D4;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .navbar .left p {
        font-size: 24px;
    }

    .navbar .right button {
        font-size: 14px;
        padding: 6px 12px;
    }

    .delegation-container {
        flex-direction: column;
        align-items: center;
    }

    .delegation-image {
        margin-bottom: 15px;
    }

    .apply-button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .navbar .left p {
        font-size: 20px;
    }

    .navbar .right button {
        font-size: 12px;
        padding: 5px 10px;
    }

    .social-button img {
        width: 30px;
    }

    .footer {
        font-size: 12px;
    }

    .fees-box {
        width: 120px;
        height: 40px;
        padding: 10px;
    }

    .fees-container {
        padding: 20px;
    }

    .fees-wrapper {
        height: 220px;
    }

    .fees-box h2 {
        font-size: 14px;
    }

    .fees-container h1 {
        font-size: 20px;
    }
}
