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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb8;
    --accent-color: #e8943e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

.header-main {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-disclosure {
    display: flex;
    align-items: center;
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.85), rgba(74, 143, 184, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.intro-section {
    padding: 60px 0;
}

.intro-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-card p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.features-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 48px;
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-medium);
}

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

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 48px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card-content {
    padding: 28px;
}

.service-card-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-card {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
}

.btn-card:hover {
    background: var(--secondary-color);
}

.section-cta {
    text-align: center;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
}

.cta-card-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 48px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-card-large h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.footer-main {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-cookie:first-child {
    background: var(--accent-color);
    color: white;
}

.btn-cookie.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

.about-card-main {
    display: flex;
    gap: 48px;
    align-items: center;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 320px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 260px;
    max-width: 540px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.process-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.process-card-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.process-content {
    flex: 1;
    min-width: 320px;
}

.process-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-image {
    flex: 1;
    min-width: 320px;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.stat-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.services-main-section {
    padding: 60px 0;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-detailed {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-wrap: wrap;
}

.service-image-container {
    flex: 1;
    min-width: 320px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content-detailed {
    flex: 1;
    min-width: 320px;
    padding: 48px;
}

.service-content-detailed h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-content-detailed > p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-content-detailed h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.booking-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.booking-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.booking-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.booking-card > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-main-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.contact-text h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.text-small {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.contact-cta-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.contact-cta-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    background: var(--bg-light);
    padding: 0 12px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.faq-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 320px;
    max-width: 540px;
    border-left: 4px solid var(--primary-color);
}

.faq-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background: var(--bg-white);
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.7;
}

.thanks-details {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.timeline-step {
    display: flex;
    gap: 24px;
}

.step-marker {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-text h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-text p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

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

.thanks-resources {
    padding: 60px 0;
    background: var(--bg-light);
}

.thanks-resources h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.resource-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-content {
    padding: 60px 0;
}

.legal-document {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-document p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-document ul li {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-document strong {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-medium);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card-detailed {
        flex-direction: column;
    }

    .process-card-layout {
        flex-direction: column;
    }

    .about-card-main {
        flex-direction: column;
    }

    .thanks-card {
        padding: 40px 24px;
    }

    .thanks-card h1 {
        font-size: 32px;
    }

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