* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e74c3c;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 2000;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.hero-section {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 60px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    background-color: #ecf0f1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.features-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background-color: #bdc3c7;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-card h3 {
    padding: 20px 20px 10px;
    color: #2c3e50;
    font-size: 22px;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #555;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 30px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.2);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    background-color: #3498db;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.order-form-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-align: center;
}

.selected-service-display strong {
    color: #27ae60;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.btn-submit:hover {
    background-color: #229954;
}

.btn-cancel {
    width: 100%;
    background-color: #95a5a6;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background-color: #7f8c8d;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #34495e;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-content .author {
    font-weight: 600;
    color: #3498db;
}

.info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-card p {
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 14px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 20px auto 0;
    color: #95a5a6;
    font-size: 14px;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.order-summary {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.order-summary h2 {
    color: #27ae60;
    margin-bottom: 15px;
    font-size: 22px;
}

.order-summary p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.steps-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-item p {
    color: #555;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: #3498db;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.page-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 400px;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.badge-popular,
.badge-save,
.badge-new {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-popular {
    background-color: #e74c3c;
    color: #fff;
}

.badge-save {
    background-color: #27ae60;
    color: #fff;
}

.badge-new {
    background-color: #3498db;
    color: #fff;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-display {
    font-size: 36px;
    font-weight: bold;
    color: #e74c3c;
    margin: 25px 0;
}

.price-note {
    font-size: 16px;
    color: #777;
    font-weight: normal;
}

.service-benefits h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-benefits ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-benefits li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.comparison-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-table th {
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.about-hero {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 60px 0;
    gap: 40px;
}

.about-hero-content {
    flex: 1;
    padding: 0 40px;
}

.about-hero-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    height: 400px;
    background-color: #ecf0f1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-content {
    flex: 1.5;
}

.story-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    height: 300px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.team-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #ecf0f1;
}

.team-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 0;
    background-color: #e8f5e9;
}

.commitment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.commitment-content {
    flex: 1;
}

.commitment-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.commitment-list {
    list-style: none;
    margin-bottom: 30px;
}

.commitment-list li {
    padding: 12px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.commitment-image {
    flex: 1;
    height: 350px;
    background-color: #bdc3c7;
    border-radius: 10px;
    overflow: hidden;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.partners-section {
    padding: 80px 0;
    background-color: #fff;
}

.partners-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.partners-intro {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 16px;
}

.partners-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.partner-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.partner-item p {
    color: #555;
    font-size: 14px;
}

.contact-header {
    background-color: #3498db;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
}

.contact-main {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.contact-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-value {
    color: #555;
    line-height: 1.6;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.schedule-item:last-of-type {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.hours {
    color: #555;
}

.schedule-note {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.delivery-zones {
    list-style: none;
}

.delivery-zones li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.delivery-zones li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.contact-map-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-placeholder {
    height: 400px;
    background-color: #bdc3c7;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.contact-cta {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-cta h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.alternative-contact {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.alternative-contact h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.alt-contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.alt-contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.alt-contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.alt-contact-card p {
    color: #555;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-container h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.legal-updated {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: #34495e;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ecf0f1;
}

.cookies-table th {
    background-color: #34495e;
    color: #fff;
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 968px) {
    .hero-section,
    .about-hero,
    .service-detail-card,
    .story-section .container,
    .contact-container,
    .commitment-container {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-content,
    .about-hero-content {
        padding: 0 20px;
    }

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .card-grid,
    .services-card-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .comparison-table {
        font-size: 14px;
    }

    .legal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .hero-content h1,
    .about-hero-content h1 {
        font-size: 28px;
    }

    .page-header h1,
    .contact-header h1 {
        font-size: 32px;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .team-stats {
        flex-direction: column;
    }

    .thanks-container {
        padding: 30px 20px;
    }
}
