@font-face {
    font-family: 'VAG Rounded';
    src: url('../fonts/VAG Rounded Std Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'VAG Rounded';
    src: url('../fonts/VAG Rounded Std Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VAG Rounded', Arial, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-image: url('../Images/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logos {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-imda {
    height: 40px;
}

.content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.body-content {
    text-align: center;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 15px;
}

.title {
    font-size: 64px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 36px;
    font-weight: 300;
    color: white;
    margin-bottom: 60px;
}

.main-text {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

.main-text-light {
    font-size: 26px;
    font-weight: 300;
    color: white;
    margin-bottom: 40px;
    line-height: 1.4;
}

.main-text strong,
.main-text-light strong {
    font-weight: bold;
}

.description {
    font-size: 22px;
    font-weight: 300;
    color: white;
    line-height: 1.6;
    margin-bottom: 60px;
}

.description-no-margin {
    font-size: 22px;
    font-weight: 300;
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
}

.buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 50px;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'VAG Rounded', Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-yes {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.btn-no {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
}

.btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.info-box {
    background: rgba(108, 92, 139, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    border-radius: 50rem;
    margin: auto;
    margin-top: 60px;
    max-width: 900px;
    width: 100%;
}

.info-text {
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 1.6;
}

.info-text strong {
    font-weight: bold;
}

.thank-you-text {
    font-size: 56px;
    font-weight: bold;
    color: white;
    margin-bottom: 60px;
}

.message-text {
    font-size: 26px;
    font-weight: 300;
    color: white;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .logos {
        gap: 15px;
        margin-bottom: 20px;
    }

    .logo {
        height: 42px;
        margin: 0 .5rem;
    }

    .logo-imda {
        height: 28px;
    }

    .content {
        padding: 0 10px;
    }

    .title {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .main-text {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .main-text-light {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .description-no-margin {
        font-size: 14px;
    }

    .buttons {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    .info-box {
        padding: 20px 25px;
        margin-top: 30px;
        border-radius: 20px;
    }

    .info-text {
        font-size: 14px;
    }

    .thank-you-text {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .message-text {
        font-size: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    body {
        padding: 15px 10px;
    }

    .logos {
        gap: 10px;
    }

    .logo {
        height: 36px;
    }

    .logo-imda {
        height: 24px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .main-text {
        font-size: 16px;
    }

    .main-text-light {
        font-size: 14px;
    }

    .description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .description-no-margin {
        font-size: 13px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .info-box {
        padding: 15px 20px;
        margin-top: 25px;
    }

    .info-text {
        font-size: 12px;
    }

    .thank-you-text {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .message-text {
        font-size: 14px;
    }
}
