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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

.main-header {
    background-color: #1f2937;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.ad-notice {
    color: #fbbf24;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #e5e7eb;
    font-weight: 500;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #60a5fa;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #10b981;
    color: #fff;
}

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

.btn-reject {
    background-color: #6b7280;
    color: #fff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

.hero-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-story {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.story-wrapper p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.problem-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.content-block {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.cards-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.card-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.card-item p {
    color: #4b5563;
    line-height: 1.7;
}

.solution-visual {
    padding: 5rem 2rem;
    background-color: #f3f4f6;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.image-side {
    flex: 1;
    min-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-side {
    flex: 1;
    min-width: 350px;
}

.text-side h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.text-side p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1d4ed8;
    color: #fff;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.trust-container h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.features-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.services-intro p {
    font-size: 1.125rem;
    color: #4b5563;
}

.services-cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-info p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1d4ed8;
}

.service-card.selected {
    border: 3px solid #10b981;
}

.service-card.selected .btn-select-service {
    background-color: #10b981;
}

.service-card.selected .btn-select-service:hover {
    background-color: #059669;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.form-container p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.final-cta {
    padding: 5rem 2rem;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #1f2937;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    color: #1f2937;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    color: #78350f;
    line-height: 1.8;
    font-size: 0.95rem;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
}

.about-hero {
    padding: 5rem 2rem;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
}

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

.about-content p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.about-story-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 350px;
}

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.story-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    min-width: 350px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.values-container h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #fff;
}

.approach-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.approach-wrapper p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f3f4f6;
}

.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.commitment-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.commitment-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.commitment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.commitment-item p {
    color: #4b5563;
    line-height: 1.7;
}

.services-header {
    padding: 5rem 2rem;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
}

.services-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
    min-width: 350px;
}

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.service-detail-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-service-action {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-service-action:hover {
    background-color: #1d4ed8;
    color: #fff;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.services-cta-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #2563eb;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.contact-hero {
    padding: 5rem 2rem;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-details-card {
    flex: 1;
    min-width: 350px;
}

.contact-details-card h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
    font-weight: 600;
}

.contact-item p {
    color: #374151;
    line-height: 1.8;
}

.contact-image-side {
    flex: 1;
    min-width: 350px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional-info {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.additional-info-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.additional-info-wrapper p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

.contact-cta-section {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-cta-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.btn-cta-contact {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #2563eb;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btn-cta-contact:hover {
    transform: translateY(-3px);
    color: #fff;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-container p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.8;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #166534;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-thanks-home,
.btn-thanks-services {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-thanks-home {
    background-color: #2563eb;
    color: #fff;
}

.btn-thanks-home:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-thanks-services {
    background-color: #f3f4f6;
    color: #374151;
}

.btn-thanks-services:hover {
    transform: translateY(-3px);
    color: #374151;
}

.next-steps-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.step-item p {
    color: #4b5563;
    line-height: 1.7;
}

.legal-content {
    padding: 5rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-container p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-container strong {
    color: #1f2937;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #111827;
}

.cookies-table td {
    color: #4b5563;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .split-layout,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}
