.Why-To-Visit {
    padding-block: 5%;
    overflow: hidden;
    background-color: #DEDEF0;
    .container

{
    max-width: 1060px;
}

h2 {
    font-size: clamp(1.5625rem, 1.3352rem + 1.1364vw, 2.1875rem);
    font-weight: 600;
    text-align: center;
    /* text-wrap: balance; */
}

ul {
    place-content: center;
    height: 100%;
    margin-top: 20px;
    li

{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    span

{
    flex-shrink: 0;
    color: var(--secondry-color);
}

}
}
}

:root {
    --primary-black: #000000;
    --accent-blue: #007AFF;
    --light-gray: #F5F5F7;
    --medium-gray: #86868B;
    --dark-gray: #1D1D1F;
}

.terms-container {
    max-width: 900px;
    margin: 5% auto;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E7;
}

.promo-image {
    width: 100%;
    object-position: top;
    aspect-ratio: 16/7;
    height: auto;
    object-fit: cover;
}

.terms-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333333 100%);
    color: white;
    padding: 40px 30px 30px;
    position: relative;
}

.iphone-badge {
}




.terms-content {
    padding: 40px;
}

.terms-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .terms-title i {
        margin-right: 12px;
        color: var(--accent-blue);
    }

.terms-card {
    background-color: var(--light-gray);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-blue);
}

.term-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

    .term-item:last-child {
        margin-bottom: 0;
    }

.term-icon {
    width: 28px;
    height: 28px;
    background-color: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.term-text {
    flex: 1;
}

    .term-text h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--primary-black);
    }

    .term-text p {
        color: var(--medium-gray);
        font-size: 1rem;
        margin-bottom: 0;
    }

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        color: #fff;
    }

    .social-icon.linkedin {
        background-color: #0A66C2;
    }

    .social-icon.instagram {
        background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80);
    }

    .social-icon.facebook {
        background-color: #1877F2;
    }

    .social-icon.twitter {
        background-color: #1DA1F2;
    }

.deadline-notice {
    background: linear-gradient(to right, #FFD700, #FFEC8B);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

    .deadline-notice p {
        color: #856404;
        font-weight: 600;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .deadline-notice i {
        margin-right: 10px;
    }

.draw-details {
    background-color: #F0F8FF;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #007AFF;
}

    .draw-details h4 {
        color: var(--primary-black);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .draw-details p {
        color: var(--medium-gray);
        margin-bottom: 0;
    }

.terms-footer {
    padding: 25px 40px;
    background-color: var(--light-gray);
    border-top: 1px solid #E5E5E7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-dates {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-black);
}

.event-location {
    color: var(--medium-gray);
    font-size: 1rem;
}

.website-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .website-link:hover {
        color: #0056CC;
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .terms-header {
        padding: 30px 20px 25px;
    }

        .terms-header h1 {
            font-size: 2.2rem;
        }

    .iphone-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 15px;
    }

    .terms-content {
        padding: 25px;
    }

    .terms-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .term-item {
        flex-direction: column;
    }

    .term-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
