/* ====================================
   SIMPLE POLICY PAGES STYLING
   ==================================== */

/* Simple Hero Section */
.policy-hero-simple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.hero-icon-simple {
    font-size: 60px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.policy-hero-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-hero-simple p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Simple Content Section */
.policy-content-simple {
    padding: 60px 20px;
    background: #f8fafc;
}

.policy-content-simple .container {
    max-width: 1400px;
    margin: 0 auto;
    display: block;
}

/* Simple Grid - Force One Row for 4 boxes */
.simple-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    width: 100%;
    grid-auto-flow: row;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.simple-box {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.simple-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.box-icon {
    font-size: 45px;
    color: #667eea;
    margin-bottom: 20px;
}

.simple-box h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.simple-box p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.simple-box .note {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

/* Info Section Simple */
.info-section-simple {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
    width: 100%;
    display: block;
    clear: both;
    grid-column: 1 / -1;
}

.info-section-simple h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-section-simple h2 i {
    color: #667eea;
    font-size: 1.5rem;
}

.info-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.info-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    line-height: 1.6;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.info-content ul li i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Simple Section */
.simple-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.simple-section h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.simple-section h2 i {
    color: #667eea;
    font-size: 1.5rem;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.content-row:hover {
    background: #eff6ff;
}

.content-row i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.content-row p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.content-row strong {
    color: #1e293b;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    border-left: 5px solid #f59e0b;
}

.info-banner i {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.info-banner h4 {
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 10px;
}

.info-banner p {
    color: #78350f;
    line-height: 1.7;
}

/* CTA Simple */
.cta-simple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    display: block;
    clear: both;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    grid-column: 1 / -1;
}

.cta-simple h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-simple p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero-simple {
        padding: 60px 15px;
    }

    .policy-hero-simple h1 {
        font-size: 2rem;
    }

    .simple-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-section-simple {
        padding: 25px 20px;
    }

    .info-section-simple h2 {
        font-size: 1.5rem;
    }

    .simple-section {
        padding: 25px 20px;
    }

    .simple-section h2 {
        font-size: 1.5rem;
    }

    .info-banner {
        flex-direction: column;
        padding: 20px;
    }

    .cta-simple {
        padding: 35px 20px;
    }

    .cta-simple h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   ORIGINAL PREMIUM STYLING (KEPT FOR COMPATIBILITY)
   ==================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   HERO SECTION
   ==================================== */
.policy-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
}

.policy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
        no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   POLICY CONTENT SECTION
   ==================================== */
.policy-content {
    padding: 80px 0;
}

/* Introduction Card */
.intro-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.intro-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.intro-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-card p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* ====================================
   TAB NAVIGATION (if needed later)
   ==================================== */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: 2px solid var(--border-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.tab-btn i {
    font-size: 1.3rem;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   POLICY GRID
   ==================================== */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Policy Cards */
.policy-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.policy-card-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #ffffff;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.policy-card:hover .policy-card-header::before {
    left: 100%;
}

.card-icon-wrapper {
    font-size: 50px;
    margin-bottom: 15px;
}

.policy-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.policy-card-body {
    padding: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item > i {
    color: var(--success-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item.excluded > i {
    color: var(--error-color);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====================================
   INFO SECTION
   ==================================== */
.info-section {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-box i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ====================================
   FAQ SECTION (optional, if you add later)
   ==================================== */
.faq-section {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    border-top: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-item h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--light-bg);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-icon {
        font-size: 60px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .tab-navigation {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .intro-card h2 {
        font-size: 2rem;
    }

    .intro-card p {
        font-size: 1rem;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero {
        padding: 100px 15px 60px;
    }

    .policy-content {
        padding: 40px 0;
    }

    .intro-card {
        padding: 40px 20px;
    }

    .policy-card-header {
        padding: 20px;
    }

    .policy-card-body {
        padding: 20px;
    }

    .info-section,
    .faq-section,
    .cta-section {
        padding: 40px 20px;
    }
}

/* ====================================
   PRINT STYLES
   ==================================== */
@media print {
    .policy-hero,
    .cta-section,
    .tab-navigation {
        display: none;
    }

    .policy-card {
        page-break-inside: avoid;
    }

    body {
        background: #ffffff;
    }
}
