/* Legal and Service Pages Styles */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 15rem 0 4rem;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-icon-large {
    margin-bottom: 2rem;
}

/* Service Content */
.service-content {
    padding: 4rem 0;
}

.service-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.service-overview h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.service-overview p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Features */
.service-feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.service-feature h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-feature p {
    color: #666;
    line-height: 1.6;
}

/* Service Details */
.service-details {
    margin: 4rem 0;
}

.service-details h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    text-align: center;
}

.detail-section {
    background: #fff;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.detail-section h3 {
    background: #2c5530;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.5rem;
}

.detail-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.detail-info h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.detail-info ul {
    list-style: none;
    padding: 0;
}

.detail-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.detail-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.detail-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.detail-meta p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Service Benefits */
.service-benefits {
    margin: 4rem 0;
}

.service-benefits h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.service-cta h2 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 6rem 0 4rem;
    background: #f8f9fa;
}

.legal-content h1 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-intro {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4a7c59;
}

.legal-section h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-contact {
    background: #2c5530;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.legal-contact h2 {
    color: white;
    border-bottom: 2px solid #4a7c59;
}

.legal-contact p {
    color: white;
}

.legal-contact a {
    color: #4a7c59;
    text-decoration: none;
}

.legal-contact a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    margin: 1rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #2c5530;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Thank You Page */
.thank-you-content {
    padding: 6rem 0 4rem;
    background: #f8f9fa;
}

.thank-you-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-card h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thank-you-info {
    margin-bottom: 3rem;
}

.thank-you-info h2 {
    color: #2c5530;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.step-icon {
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

.thank-you-benefits {
    margin-bottom: 3rem;
}

.thank-you-benefits h2 {
    color: #2c5530;
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit span {
    color: #2c5530;
    font-weight: 500;
}

.thank-you-actions {
    margin-bottom: 3rem;
}

.thank-you-actions h2 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.thank-you-actions p {
    color: #666;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-contact h2 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.thank-you-contact p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-method strong {
    color: #2c5530;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    color: #666;
}

.contact-method a {
    color: #2c5530;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .thank-you-card {
        padding: 2rem;
    }
    
    .thank-you-card h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 5rem 0 2rem;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 5rem 0 3rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: 5rem 0 3rem;
    }
    
    .thank-you-card {
        padding: 1.5rem;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}
