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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f4f1ed;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0ddd8;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #8b7355;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #6d5a42;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    padding-left: 80px;
}

.hero-content-offset {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #2c2c2c;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 19px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

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

.cta-primary:hover {
    background-color: #8b7355;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: 120px;
    margin-bottom: -80px;
    margin-left: -40px;
    overflow: hidden;
}

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

.intro-offset {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    align-items: center;
}

.intro-text-block {
    flex: 0 0 55%;
}

.intro-text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c2c2c;
    letter-spacing: -0.8px;
}

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

.intro-image-float {
    flex: 1;
    height: 550px;
    position: relative;
    transform: translateY(-40px);
    overflow: hidden;
}

.intro-image-float img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-irregular {
    padding: 100px 80px 120px;
    background-color: #fafafa;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.card-large {
    flex: 0 0 calc(60% - 20px);
    margin-left: 0;
}

.card-offset {
    flex: 0 0 calc(35% - 20px);
    margin-top: 60px;
}

.card-elevated {
    flex: 0 0 calc(45% - 20px);
    margin-top: -40px;
}

.card-shifted {
    flex: 0 0 calc(50% - 20px);
    margin-left: 30px;
}

.card-rotated {
    flex: 0 0 calc(48% - 20px);
    transform: rotate(-0.5deg);
}

.service-image-container {
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #8b7355;
}

.testimonial-overlap {
    display: flex;
    min-height: 400px;
    position: relative;
    margin: 0 80px;
}

.testimonial-content {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #2c2c2c;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.testimonial-content blockquote {
    margin: 0;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #c9b8a0;
}

.testimonial-visual {
    flex: 1;
    position: relative;
    margin-left: -80px;
}

.form-section-diagonal {
    padding: 120px 80px;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    transform: skewY(-2deg);
    margin-top: 80px;
    margin-bottom: 80px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.asymmetric-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    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: #8b7355;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #8b7355;
}

.trust-indicators {
    padding: 80px;
    background-color: #fafafa;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.disclaimer-section {
    padding: 60px 80px;
    background-color: #f4f1ed;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 80px 80px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-brand {
    flex: 1.5;
}

.footer-column h3,
.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #c9b8a0;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #c9b8a0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

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

.page-hero-offset {
    padding: 100px 80px 60px;
    background-color: #f9f7f4;
}

.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

.about-story-asymmetric {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: flex-start;
}

.story-text-block {
    flex: 0 0 50%;
}

.story-text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.story-image-diagonal {
    flex: 1;
    height: 600px;
    transform: rotate(-1deg);
    overflow: hidden;
}

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

.philosophy-overlap {
    display: flex;
    margin: 60px 80px;
    min-height: 500px;
}

.philosophy-visual {
    flex: 0 0 35%;
}

.philosophy-content {
    flex: 1;
    padding: 60px 80px;
    background-color: #fafafa;
    margin-left: -60px;
    position: relative;
    z-index: 10;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.philosophy-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-irregular {
    padding: 100px 80px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 40px;
    color: #2c2c2c;
}

.team-grid-asymmetric {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
}

.team-member {
    flex: 1;
    padding: 40px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.member-elevated {
    transform: translateY(-30px);
}

.member-shifted {
    margin-left: 40px;
    margin-top: 60px;
}

.member-rotated {
    transform: rotate(0.5deg);
}

.member-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.member-role {
    font-size: 16px;
    color: #8b7355;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.cta-diagonal {
    padding: 120px 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    transform: skewY(-2deg);
    margin-top: 80px;
}

.cta-content-offset {
    transform: skewY(2deg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content-offset p {
    font-size: 18px;
    color: #c9b8a0;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #6d5a42;
    transform: translateY(-2px);
}

.services-detail-asymmetric {
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

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

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

.service-detail-centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-image {
    flex: 0 0 45%;
    height: 450px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 35px;
}

.service-includes ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.service-includes ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
    font-size: 20px;
}

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
}

.services-cta-overlap {
    display: flex;
    margin: 60px 80px;
    min-height: 350px;
    align-items: center;
}

.cta-visual {
    flex: 0 0 40%;
}

.cta-text {
    flex: 1;
    padding: 60px 80px;
    background-color: #f9f7f4;
    margin-left: -60px;
    position: relative;
    z-index: 10;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #8b7355;
}

.contact-asymmetric {
    display: flex;
    padding: 80px;
    gap: 80px;
}

.contact-info-block {
    flex: 0 0 45%;
}

.contact-info-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.contact-detail h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-note {
    font-size: 14px;
    color: #8b7355;
    margin-top: 10px;
    font-style: italic;
}

.contact-visual-offset {
    flex: 1;
    height: 700px;
    transform: translateY(60px);
    overflow: hidden;
}

.contact-visual-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-diagonal {
    padding: 100px 80px;
    background-color: #fafafa;
    transform: skewY(-1.5deg);
    margin: 80px 0;
}

.faq-diagonal h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2c2c2c;
    transform: skewY(1.5deg);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    transform: skewY(1.5deg);
}

.faq-item {
    flex: 0 0 calc(50% - 20px);
    padding: 35px;
    background-color: #ffffff;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-cta-overlap {
    display: flex;
    justify-content: center;
    padding: 80px;
}

.cta-block {
    max-width: 600px;
    text-align: center;
    padding: 60px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.cta-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-block p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.thanks-hero-asymmetric {
    display: flex;
    min-height: 80vh;
    padding: 80px;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 0 0 55%;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #f9f7f4;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.thanks-info p {
    font-size: 20px;
    color: #8b7355;
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8b7355;
}

.btn-secondary {
    padding: 14px 35px;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
    transform: rotate(1deg);
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    padding: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-content a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6d5a42;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #999;
    text-align: right;
}

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

    .hero-content-offset {
        flex: 1;
    }

    .hero-image-overlap {
        margin: 40px 0 0 0;
        width: 100%;
    }

    .intro-offset,
    .about-story-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

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

    .service-card {
        flex: 1 !important;
        margin: 0 !important;
        transform: none !important;
    }

    .testimonial-overlap {
        flex-direction: column;
        margin: 0 40px;
    }

    .testimonial-content {
        flex: 1;
    }

    .testimonial-visual {
        display: none;
    }

    .form-section-diagonal {
        padding: 60px 40px;
        transform: none;
    }

    .form-container {
        transform: none;
    }

    .form-row {
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail {
        flex-direction: column !important;
        gap: 40px;
    }

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

    .contact-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

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

    .faq-item {
        flex: 1;
    }

    .thanks-hero-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

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

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

    .team-member {
        transform: none !important;
        margin: 0 !important;
    }
}