* {
    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: #2C3E50;
    background-color: #FFFFFF;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #FFFFFF;
    padding: 25px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #27AE60;
    color: #FFFFFF;
}

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

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

.nav-asymmetric {
    background-color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7F8C8D;
    padding: 6px 12px;
    background-color: #ECF0F1;
    border-radius: 4px;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #F8FBFD;
    z-index: 10;
}

.hero-text-block {
    max-width: 580px;
}

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1A252F;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #546E7A;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #2980B9;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1F618D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

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

.intro-offset {
    padding: 100px 60px;
    background-color: #FFFFFF;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.intro-sidebar {
    flex: 0 0 380px;
}

.intro-sidebar h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1A252F;
    font-weight: 700;
}

.intro-sidebar p {
    font-size: 1.1rem;
    color: #546E7A;
    line-height: 1.8;
}

.intro-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card-stacked {
    padding: 35px;
    background-color: #F8FBFD;
    border-left: 4px solid #3498DB;
}

.feature-card-stacked h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1A252F;
}

.feature-card-stacked p {
    font-size: 1rem;
    color: #546E7A;
    line-height: 1.7;
}

.services-diagonal {
    padding: 120px 60px;
    background-color: #F4F7F9;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 70px;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1A252F;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #546E7A;
}

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

.service-card-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-8px);
}

.service-card-small {
    flex: 1 1 calc(45% - 15px);
    min-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card-small:hover {
    transform: translateY(-8px);
}

.service-card-medium {
    flex: 1 1 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.3s ease;
}

.service-card-medium:hover {
    transform: translateY(-8px);
}

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

.service-card-medium .service-image-container {
    width: 45%;
    height: auto;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-image-container img,
.service-card-small:hover .service-image-container img,
.service-card-medium:hover .service-image-container img {
    transform: scale(1.08);
}

.service-info {
    padding: 35px;
}

.service-card-medium .service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1A252F;
}

.service-info p {
    font-size: 1rem;
    color: #546E7A;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 20px;
}

.service-select {
    padding: 14px 32px;
    background-color: #2980B9;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #1F618D;
    transform: translateX(5px);
}

.about-split {
    display: flex;
    min-height: 600px;
}

.about-content-block {
    flex: 1;
    padding: 100px 80px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-block h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1A252F;
    font-weight: 700;
}

.about-content-block p {
    font-size: 1.1rem;
    color: #546E7A;
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-inline {
    color: #2980B9;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #1F618D;
}

.about-image-block {
    flex: 1;
    overflow: hidden;
}

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

.booking-section {
    padding: 100px 60px;
    background-color: #F8FBFD;
}

.booking-container-offset {
    max-width: 800px;
    margin: 0 auto;
}

.booking-container-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1A252F;
    text-align: center;
}

.booking-container-offset > p {
    font-size: 1.15rem;
    color: #546E7A;
    text-align: center;
    margin-bottom: 50px;
}

.booking-form-asymmetric {
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.form-group-split {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field {
    margin-bottom: 25px;
    flex: 1;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2C3E50;
    font-size: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E7EF;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498DB;
}

.form-submit-cta {
    width: 100%;
    padding: 18px;
    background-color: #27AE60;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-cta:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.testimonials-stacked {
    padding: 100px 60px;
    background-color: #FFFFFF;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-stacked h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1A252F;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-card {
    padding: 40px 50px;
    background-color: #F8FBFD;
    border-left: 5px solid #3498DB;
    position: relative;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2C3E50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1rem;
    color: #7F8C8D;
    font-weight: 600;
    font-style: normal;
}

.footer-asymmetric {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 80px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #BDC3C7;
}

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

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

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

.footer-column ul li a:hover {
    color: #FFFFFF;
}

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

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #BDC3C7;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #BDC3C7;
}

.page-hero-minimal {
    padding: 100px 60px 60px;
    background-color: #F8FBFD;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1A252F;
    font-weight: 700;
}

.page-hero-minimal p {
    font-size: 1.3rem;
    color: #546E7A;
}

.content-asymmetric {
    padding: 80px 60px;
    background-color: #FFFFFF;
}

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

.content-block-wide {
    margin-bottom: 80px;
}

.content-block-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1A252F;
    font-weight: 700;
}

.content-block-wide p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 20px;
}

.content-split-visual {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.content-text-section {
    flex: 1;
}

.content-text-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1A252F;
}

.content-text-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 20px;
}

.content-image-section {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.content-block-narrow {
    max-width: 800px;
    margin: 0 auto 80px;
}

.content-block-narrow h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1A252F;
}

.content-block-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 35px;
    background-color: #F8FBFD;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1A252F;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546E7A;
}

.cta-section-offset {
    padding: 100px 60px;
    background-color: #2980B9;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #FFFFFF;
    color: #2980B9;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 60px 60px 100px;
    background-color: #FFFFFF;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1A252F;
}

.service-detail-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 30px;
}

.service-features h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2C3E50;
}

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

.service-features ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #546E7A;
}

.service-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1rem;
    color: #7F8C8D;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27AE60;
}

.service-inquiry-btn {
    padding: 16px 35px;
    background-color: #2980B9;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-inquiry-btn:hover {
    background-color: #1F618D;
    transform: translateY(-2px);
}

.contact-layout {
    display: flex;
    min-height: 600px;
}

.contact-info-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #F8FBFD;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1A252F;
}

.contact-detail-section {
    margin-bottom: 40px;
}

.contact-detail-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2C3E50;
    font-weight: 600;
}

.contact-detail-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546E7A;
}

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background-color: #E8F4F8;
    border-left: 4px solid #3498DB;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2C3E50;
}

.contact-visual-block {
    flex: 1;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-section {
    padding: 80px 60px;
    background-color: #FFFFFF;
    max-width: 1200px;
    margin: 0 auto;
}

.directions-section h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #1A252F;
}

.directions-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 20px;
}

.thanks-container {
    padding: 100px 60px;
    background-color: #F8FBFD;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27AE60;
    color: #FFFFFF;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1A252F;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #546E7A;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-details {
    padding: 25px;
    background-color: #F8FBFD;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1A252F;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.step-number {
    width: 45px;
    height: 45px;
    background-color: #3498DB;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2C3E50;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #546E7A;
}

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

.thanks-btn-primary {
    padding: 16px 35px;
    background-color: #2980B9;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.thanks-btn-primary:hover {
    background-color: #1F618D;
    transform: translateY(-2px);
}

.thanks-btn-secondary {
    padding: 16px 35px;
    background-color: transparent;
    color: #2980B9;
    text-decoration: none;
    border: 2px solid #2980B9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.thanks-btn-secondary:hover {
    background-color: #F8FBFD;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 60px;
    background-color: #FFFFFF;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #1A252F;
}

.legal-page > p {
    font-size: 1rem;
    color: #7F8C8D;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495E;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546E7A;
    margin-bottom: 12px;
}

.legal-content a {
    color: #2980B9;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-diagonal {
        clip-path: none;
        min-height: 400px;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .intro-sidebar {
        flex: none;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-small,
    .service-card-medium {
        flex: none;
        min-width: 100%;
    }

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

    .service-card-medium .service-image-container {
        width: 100%;
        height: 280px;
    }

    .about-split {
        flex-direction: column;
    }

    .content-split-visual {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .form-group-split {
        flex-direction: column;
        gap: 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: none;
    }
}