/* =========================================
   POLICY SECTION STYLES
   ========================================= */

.policy-section {
    background-color: #fff;
    padding: 60px 0;
    font-family: 'Montserrat', sans-serif;
}

/* --- The Orange Card Container --- */
.policy-card {
    border: 3px solid #FF9D00;
    /* The orange border color */
    border-radius: 20px;
    /* Rounded corners */
    padding: 40px;
    /* Space inside the border */
    background-color: #fff;
    max-width: 1100px;
    margin: 0 auto;
    /* Center the card */
}

/* --- Header / Tabs --- */
.policy-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Space between the two titles */
    margin-bottom: 30px;
}

.policy-tab {
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    margin: 0;
}

.policy-tab.active {
    color: #2176FF;
    /* Blue color for Privacy Policy */
}

.policy-tab.inactive {
    color: #333;
    /* Dark grey/black for Terms & Conditions */
    font-weight: 500;
    /* Slightly thinner than active */
}

/* --- Content Styling --- */
.policy-content {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.policy-intro {
    margin-bottom: 20px;
}

/* Specific points (1. Information Collection, etc) */
.policy-point {
    margin-bottom: 15px;
}

.policy-point strong {
    color: #000;
    display: block;
    /* Ensures the title is on its own line if needed, or inline */
    margin-bottom: 5px;
}

.policy-point p {
    margin: 0;
}

/* Link Styling */
.policy-content a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}

.policy-content a:hover {
    color: #2176FF;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablet View */
@media screen and (max-width: 1024px) {
    .policy-card {
        padding: 30px;
        margin: 0 15px;
        /* Add side margins so it doesn't touch screen edges */
    }
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        /* Stack titles vertically on mobile */
        gap: 10px;
        align-items: center;
    }

    .policy-tab {
        font-size: 1.2rem;
    }

    .policy-card {
        padding: 20px;
        /* Less padding inside border on mobile */
        border-width: 2px;
        /* Slightly thinner border */
        border-radius: 15px;
    }

    .policy-content {
        font-size: 0.85rem;
        /* Smaller text for readability on small screens */
    }
}