/* Policy Pages Styling */
.policy-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.policy-hero {
    background: linear-gradient(135deg, #00CCFF 0%, #00AEEF 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.policy-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.policy-hero .hero-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-section {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.policy-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00CCFF;
    display: inline-block;
}

.policy-section .subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.section-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.section-content p {
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.7;
}

.policy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #00CCFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.policy-list.numbered {
    counter-reset: item;
}

.policy-list.numbered li::before {
    content: counter(item);
    counter-increment: item;
    background: #00AEEF;
}

.policy-list.warning-list li::before {
    content: "⚠";
    background: #e74c3c;
}

.policy-list strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Warranty Table */
.warranty-table {
    overflow-x: auto;
    margin: 20px 0;
}

.warranty-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.warranty-table th,
.warranty-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.warranty-table th {
    background: linear-gradient(135deg, #00CCFF 0%, #00AEEF 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.warranty-table tbody tr:hover {
    background: #f8f9fa;
}

.warranty-table tbody tr:last-child td {
    border-bottom: none;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00CCFF 0%, #00AEEF 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.step-content strong {
    color: #00CCFF;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 2rem;
    color: #00CCFF;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Policy Footer */
.policy-footer {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    border: 2px dashed #00CCFF;
}

.policy-footer p {
    margin: 10px 0;
    color: #555;
    line-height: 1.8;
}

.policy-footer em {
    color: #777;
    font-size: 0.95rem;
}

.policy-footer strong {
    color: #00CCFF;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero .hero-title {
        font-size: 2rem;
    }

    .policy-hero .hero-subtitle {
        font-size: 1rem;
    }

    .policy-section {
        padding: 25px 20px;
    }

    .policy-section .section-title {
        font-size: 1.5rem;
    }

    .policy-section .subsection-title {
        font-size: 1.2rem;
    }

    .section-content {
        font-size: 1rem;
    }

    .warranty-table {
        font-size: 0.9rem;
    }

    .warranty-table th,
    .warranty-table td {
        padding: 10px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        min-width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .policy-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 40px 15px;
    }

    .policy-hero .hero-title {
        font-size: 1.7rem;
    }

    .policy-container {
        padding: 30px 15px;
    }

    .policy-section {
        padding: 20px 15px;
    }

    .policy-list li {
        padding-left: 30px;
        font-size: 0.95rem;
    }

    .policy-list li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}
