/* TOSS Policy Page Styles */

.policy-page-wrapper {
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Hero Section */
.policy-hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.policy-hero-image {
    height: 50vh;
    background-image: url('../assets/images/Transportation.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.policy-hero-content {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.policy-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-blue, #1e3a8a);
    margin-bottom: 20px;
    line-height: 1.2;
}

.policy-hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Content Container */
.policy-content-container {
    background-color: white;
    margin: 0 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brand-blue, #1e3a8a);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--brand-gold, #f59e0b);
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.policy-section li::before {
    content: '•';
    color: var(--brand-gold, #f59e0b);
    font-weight: bold;
    position: absolute;
    left: 10px;
    font-size: 1.2rem;
}

.policy-section ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.policy-section ul ul li {
    padding-left: 20px;
    font-size: 0.95rem;
}

.policy-section ul ul li::before {
    content: '◦';
    left: 0;
}

/* Service Subsections */
.service-subsection {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-gold, #f59e0b);
}

.service-subsection h3 {
    margin-top: 0;
    color: var(--brand-blue, #1e3a8a);
}

/* Important Note */
.important-note {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.important-note p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
    padding: 30px;
    border-radius: 12px;
    border: none;
}

.conclusion-section h2 {
    color: var(--brand-blue, #1e3a8a);
}

.conclusion-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
}

/* Call to Action Section */
.policy-cta-section {
    background: linear-gradient(135deg, var(--brand-gold, #f59e0b) 0%, #d97706 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.policy-cta-section h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: white;
}

.policy-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e5e7eb;
}

.policy-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.policy-cta-button.primary {
    background-color: white;
    color: var(--brand-gold, #f59e0b);
}

.policy-cta-button.primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.policy-cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.policy-cta-button.secondary:hover {
    background-color: white;
    color: var(--brand-gold, #f59e0b);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero-image {
        height: 40vh;
    }
    
    .policy-hero-content {
        padding: 40px 20px;
    }
    
    .policy-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .policy-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .policy-content {
        padding: 40px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .service-subsection {
        padding: 20px;
    }
    
    .policy-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-cta-button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .policy-content-container {
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .policy-hero-content h1 {
        font-size: 1.875rem;
    }
    
    .policy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-content {
        padding: 30px 15px;
    }
    
    .policy-cta-section {
        padding: 30px 20px;
    }
}
