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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: -0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #fafafa;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    color: #475569;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e40af;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 90px 40px;
    background-color: #f8fafc;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

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

.services-grid-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 450px;
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-image {
    flex: 0 0 200px;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.service-info p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: auto;
}

.service-info .price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 18px;
}

.trust-split {
    display: flex;
    min-height: 550px;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

.trust-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #334155;
}

.feature-icon {
    font-size: 20px;
    color: #2563eb;
    font-weight: 700;
}

.form-section {
    padding: 90px 40px;
    background-color: #f1f5f9;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;
}

.form-intro p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    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: #2563eb;
}

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-full {
    padding: 90px 40px;
    background-color: #0f172a;
    color: #ffffff;
}

.testimonials-full h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #e2e8f0;
}

.testimonial .author {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 40px 30px;
}

.footer-content-split {
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e5e7eb;
    color: #374151;
}

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

.page-header {
    padding: 80px 40px 60px;
    text-align: center;
    background-color: #f8fafc;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

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

.services-detailed {
    padding: 60px 40px;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.service-detail-info p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 26px;
    position: relative;
    font-size: 15px;
    color: #334155;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.price-label {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

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

.cta-section-full {
    padding: 90px 40px;
    background-color: #2563eb;
    text-align: center;
}

.cta-content-center {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-center h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    color: #dbeafe;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
}

.about-intro-split {
    display: flex;
    padding: 70px 40px;
    gap: 60px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

.about-text p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    min-height: 450px;
}

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

.values-section {
    padding: 70px 40px;
    background-color: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    padding: 70px 40px;
    gap: 60px;
    background-color: #ffffff;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    min-height: 450px;
}

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

.approach-text p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.equipment-section {
    padding: 70px 40px;
    background-color: #f8fafc;
}

.equipment-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

.equipment-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.equipment-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-list p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.8;
}

.equipment-items {
    list-style: none;
}

.equipment-items li {
    padding: 12px 0;
    padding-left: 26px;
    position: relative;
    font-size: 16px;
    color: #334155;
}

.equipment-items li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.equipment-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

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

.team-section-full {
    padding: 70px 40px;
    background-color: #ffffff;
}

.team-section-full h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

.team-features {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-feature {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.team-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.team-feature p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

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

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

.contact-info-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 35px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    line-height: 1.8;
}

.directions-section {
    padding: 70px 40px;
    background-color: #f8fafc;
}

.directions-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

.directions-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.direction-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.direction-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.contact-cta-full {
    padding: 80px 40px;
    background-color: #0f172a;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.contact-cta-content p {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.thanks-page {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8fafc;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.thanks-container > p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-info {
    padding: 20px;
    background-color: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #334155;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next ul li {
    padding: 10px 0;
    padding-left: 26px;
    position: relative;
    font-size: 15px;
    color: #475569;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.legal-update {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #334155;
    margin-top: 30px;
    margin-bottom: 14px;
}

.legal-container p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .service-detail-split,
    .about-intro-split,
    .approach-split,
    .equipment-split,
    .contact-split,
    .form-container-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-detail-split.reverse,
    .approach-split.reverse {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-content,
    .intro-text,
    .trust-content {
        padding: 50px 30px;
    }

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

    .services-preview,
    .form-section,
    .testimonials-full {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

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

    .section-header-center h2 {
        font-size: 32px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }

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

    .section-header-center h2 {
        font-size: 28px;
    }

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

    .service-image {
        flex: 0 0 180px;
    }
}