/* Policy Pages Specific Styles */

/* Hero Section */
.policy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #87CEEB 0%, #ffffff 100%);
    position: relative;
    padding: 8rem 0 4rem;
}

.policy-hero .hero-content {
    text-align: center;
    z-index: 2;
}

.policy-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    animation: fadeInUp 0.8s ease;
}

.policy-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #333333;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Main Content */
.policy-content {
    background: #ffffff;
    min-height: 60vh;
    padding: 4rem 0;
}

/* Policy Cards Grid */
.policy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Policy Link Card */
.policy-link-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(30, 144, 255, 0.2);
    border-color: #1e90ff;
}

/* Policy Card Icon */
.policy-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e90ff 0%, #87CEEB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

/* Policy Card Title */
.policy-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Policy Card Description */
.policy-card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Policy Card Button */
.policy-card-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.policy-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
}

.policy-card-button i {
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #87CEEB;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #87CEEB;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #87CEEB;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero .hero-title {
        font-size: 2rem;
    }

    .policy-hero .hero-subtitle {
        font-size: 1rem;
    }

    .policy-wrapper {
        padding: 1rem;
    }

    .policy-section .section-title {
        font-size: 1.5rem;
    }

    .policy-embed iframe {
        min-height: 600px;
    }

    .policy-links {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        min-height: 30vh;
        padding: 6rem 0 3rem;
    }

    .policy-hero .hero-title {
        font-size: 1.5rem;
    }

    .policy-embed iframe {
        min-height: 500px;
    }
}
