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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-main {
    display: none;
}

.nav-main a {
    margin-left: 32px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 99;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.hero-card {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text-card h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-text-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.info-cards {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 48px;
}

.info-card h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.section-header-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-card p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.btn-service:hover {
    background-color: #0284c7;
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.steps-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

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

.step-card h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.trust-badges {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.badge-icon {
    font-size: 32px;
    color: var(--success-color);
}

.badge-card p {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.services-detailed {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

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

.service-detail-image {
    width: 100%;
}

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

.service-detail-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-content h2 {
    font-size: 30px;
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

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

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.price-label {
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-story {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.story-card-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text-card h2 {
    font-size: 36px;
    color: var(--text-dark);
}

.story-text-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 17px;
}

.story-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.value-card h3 {
    font-size: 22px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 18px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.team-card h3 {
    padding: 24px 24px 8px;
    font-size: 24px;
    color: var(--text-dark);
}

.team-role {
    padding: 0 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.certifications-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.cert-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cert-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cert-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cert-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.stat-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 200px;
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

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

.cta-card-centered {
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-card-centered h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-card-centered p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 18px;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card h2 {
    font-size: 32px;
    color: var(--text-dark);
}

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

.contact-icon {
    font-size: 32px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    background-color: #fef3c7;
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid #f59e0b;
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

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

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-card {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
}

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.next-steps-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    text-align: left;
}

.next-steps-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steps-list li {
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.thanks-cta {
    margin-bottom: 40px;
}

.thanks-cta p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.thanks-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.contact-reminder {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.contact-reminder p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-reminder a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.legal-content {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.legal-document h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .nav-main {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-grid {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-card {
        flex: 1;
    }

    .hero-image-card {
        flex: 1;
    }

    .hero-text-card h1 {
        font-size: 48px;
    }

    .cards-grid {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .service-cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: calc(50% - 16px);
    }

    .steps-cards {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

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

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

    .service-detail-image {
        width: 50%;
    }

    .service-detail-content {
        width: 50%;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: calc(50% - 12px);
    }

    .story-card-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text-card {
        flex: 1;
    }

    .story-image-card {
        flex: 1;
    }

    .values-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: calc(50% - 12px);
    }

    .team-grid {
        flex-direction: row;
    }

    .team-card {
        flex: 1;
    }

    .cert-cards {
        flex-direction: row;
    }

    .cert-card {
        flex: 1;
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }

    .contact-image-card {
        flex: 1;
    }

    .faq-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-card {
        flex: calc(50% - 12px);
    }

    .thanks-buttons {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: calc(33.333% - 22px);
    }

    .value-card {
        flex: calc(25% - 18px);
    }
}