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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

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

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-center a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-center a:hover {
    color: #2c5f2d;
}

.nav-right .ad-label {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left {
    flex: 1;
    background-color: #e8ebe6;
}

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

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f5f5f0;
}

.hero-right h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-right p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234a23;
}

.intro-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text {
    flex: 1.3;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.intro-image {
    flex: 0.7;
    background-color: #e8ebe6;
}

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

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

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

.value-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-left: 4px solid #2c5f2d;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.services-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.services-header p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.service-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #e8ebe6;
}

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

.service-details {
    flex: 1;
    padding: 2rem;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-details p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    color: #2c5f2d;
    font-weight: 600;
    margin: 1.5rem 0;
}

.btn-select {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.testimonials-flow {
    padding: 6rem 2rem;
    background-color: #f5f5f0;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-top: 3px solid #2c5f2d;
}

.testimonial p {
    font-size: 1rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.form-intro p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.reservation-form {
    background-color: #f5f5f0;
    padding: 3rem 2.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1.1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.about-hero {
    padding: 6rem 2rem 4rem;
    background-color: #f5f5f0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

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

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e8ebe6;
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.story-text {
    flex: 1;
    padding: 2rem;
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

.evolution-section {
    padding: 5rem 2rem;
    background-color: #f5f5f0;
}

.evolution-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

.evolution-text {
    flex: 1;
    padding: 2rem;
}

.evolution-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.evolution-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.evolution-image {
    flex: 1;
    background-color: #e8ebe6;
}

.evolution-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.today-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.today-full {
    max-width: 900px;
    margin: 0 auto;
}

.today-full h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.today-full p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f5f5f0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.team-member {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem 1.8rem;
    text-align: center;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p:first-of-type {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.team-member p:last-of-type {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.values-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 400;
}

.value-block {
    margin-bottom: 3rem;
}

.value-block h3 {
    font-size: 1.6rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-block p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #2c5f2d;
    text-align: center;
}

.cta-about .cta-content h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.services-hero {
    padding: 6rem 2rem 4rem;
    background-color: #f5f5f0;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.services-hero p {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-full {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background-color: #f5f5f0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #2c5f2d;
}

.service-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.price-tag {
    font-size: 2rem;
    color: #2c5f2d;
    font-weight: 600;
}

.service-body {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-body.reverse {
    flex-direction: row-reverse;
}

.service-desc {
    flex: 1.5;
}

.service-desc p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-desc ul {
    list-style: none;
    padding-left: 0;
}

.service-desc ul li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-desc ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-img {
    flex: 1;
    background-color: #e8ebe6;
}

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

.contact-hero {
    padding: 6rem 2rem 4rem;
    background-color: #f5f5f0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.contact-layout {
    padding: 5rem 2rem;
    background-color: #ffffff;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    padding: 2rem;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #e8ebe6;
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

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

.contact-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.additional-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f5f5f0;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-left: 4px solid #2c5f2d;
    margin: 2rem 0;
    font-size: 1.05rem;
    color: #2c5f2d;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h3 {
    font-size: 1.6rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-next p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.thanks-extra {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-extra h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.extra-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.extra-card {
    flex: 1;
    background-color: #f5f5f0;
    padding: 2.5rem 2rem;
}

.extra-card h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.extra-card p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.extra-card a {
    color: #2c5f2d;
    text-decoration: underline;
    font-weight: 600;
}

.extra-card a:hover {
    color: #234a23;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 1.1rem;
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-container li {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234a23;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f5f5f0;
    color: #2a2a2a;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #5a5a5a;
}

@media (max-width: 768px) {
    .hero-split,
    .service-split,
    .intro-content,
    .story-container,
    .evolution-container,
    .contact-layout,
    .service-body {
        flex-direction: column;
    }

    .service-split.reverse,
    .service-body.reverse {
        flex-direction: column;
    }

    .values-grid,
    .testimonial-cards,
    .team-grid,
    .additional-info,
    .extra-cards {
        flex-direction: column;
    }

    .nav-center {
        gap: 1rem;
    }

    .hero-right h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .services-header h2,
    .testimonials-flow h2,
    .form-intro h2 {
        font-size: 2rem;
    }
}