/* Policy Page Styles */

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #009688 0%, #00bcd4 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.policy-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg, #fff3e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 1rem;
    text-align: center;
}

.last-updated {
    font-size: 0.95rem;
    opacity: 0.85;
    font-style: italic;
    text-align: center;
}

/* Content Section */
.policy-content {
    padding: 60px 0;
    background: white;
}

.policy-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.content-wrapper {
    max-width: 900px;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #009688;
    display: inline-block;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 2rem 0 1rem;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.section-text a {
    color: #009688;
    text-decoration: none;
    font-weight: 600;
}

.section-text a:hover {
    text-decoration: underline;
}

.important-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

/* Lists */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #009688;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-list li strong {
    color: #1a202c;
}

/* Info Cards */
.info-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #009688;
    box-shadow: 0 4px 20px rgba(0, 150, 136, 0.1);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.right-card:hover {
    border-color: #009688;
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.15);
    transform: translateY(-4px);
}

.right-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.right-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.right-text {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 2px solid #009688;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.contact-details {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 2;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #1a202c;
}

.contact-details strong {
    color: #2d3748;
    min-width: 100px;
    display: inline-block;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: #009688;
    border-left-color: #009688;
    padding-left: 1.25rem;
}

.cta-card {
    background: linear-gradient(135deg, #009688 0%, #00bcd4 100%);
    border: none;
    color: white;
}

.cta-card .sidebar-title {
    color: white;
}

.sidebar-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.sidebar-btn {
    display: block;
    background: white;
    color: #009688;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .policy-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar {
        position: static;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 80px 0 50px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .subsection-title {
        font-size: 1.25rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .info-card,
    .sidebar-card,
    .highlight-section {
        padding: 1.5rem;
    }

    .policy-list li {
        padding-left: 1.5rem;
        font-size: 1rem;
    }
}
