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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.hero-offset {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 30px;
}

.hero-image-right {
    flex: 1;
    margin-top: -40px;
}

.hero-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0056b3;
}

.cta-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-asymmetric {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-offset {
    flex: 1.2;
    padding-right: 60px;
    margin-top: 30px;
}

.intro-block-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-block-offset p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.intro-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: -20px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #495057;
}

.problem-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    margin: 80px 0;
}

.problem-section > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-content-right {
    flex: 1.3;
    padding-left: 40px;
}

.problem-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.challenge-list {
    list-style: none;
    margin: 25px 0;
}

.challenge-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #495057;
}

.challenge-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

.problem-visual-left {
    flex: 0.7;
    margin-top: 40px;
}

.problem-visual-left img {
    width: 100%;
    border-radius: 8px;
}

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

.insight-wrapper h2 {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.insight-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #495057;
    margin-bottom: 60px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 35px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 40px;
}

.service-card.offset-3 {
    margin-top: -30px;
}

.service-card.offset-4 {
    margin-top: 50px;
}

.service-card.offset-5 {
    margin-top: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 20px 0;
}

.service-select {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    margin: 80px 0;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.method-blocks {
    display: flex;
    gap: 40px;
}

.method-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #007bff;
}

.method-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.testimonials-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.testimonial-card.left-offset {
    margin-left: 0;
    margin-right: 120px;
}

.testimonial-card.right-offset {
    margin-left: 120px;
    margin-right: 0;
}

.testimonial-card.center-offset {
    margin-left: 60px;
    margin-right: 60px;
}

.testimonial-card p {
    font-size: 17px;
    color: #495057;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
}

.cta-section-inline {
    background-color: #007bff;
    padding: 80px 20px;
    margin: 80px 0;
}

.cta-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content-asymmetric p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-content-asymmetric .cta-secondary {
    background-color: #ffffff;
    color: #007bff;
}

.cta-content-asymmetric .cta-secondary:hover {
    background-color: #f8f9fa;
}

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

.form-container-offset {
    max-width: 700px;
    margin-left: 100px;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container-offset > p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #0056b3;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 40px 20px;
    margin: 80px 0;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.8;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #495057;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    line-height: 1.6;
}

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

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

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

.cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #545b62;
}

.about-hero-offset {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 20px;
}

.about-intro {
    max-width: 800px;
    margin-left: 80px;
}

.about-intro h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 20px;
    color: #495057;
}

.about-story {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block-left {
    flex: 1.2;
}

.story-block-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.story-image-right {
    flex: 0.8;
    margin-top: 60px;
}

.story-image-right img {
    width: 100%;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.approach-section-asymmetric {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
    padding-right: 40px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.approach-visual {
    flex: 1;
    margin-top: -40px;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
}

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-section > p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.team-info p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.cta-about {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.services-hero {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    color: #495057;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.service-detail-block.offset-layout-1 {
    margin-top: 0;
}

.service-detail-block.offset-layout-2 {
    margin-top: 40px;
}

.service-detail-block.offset-layout-3 {
    margin-top: -20px;
}

.service-detail-block.offset-layout-4 {
    margin-top: 50px;
}

.service-detail-block.offset-layout-5 {
    margin-top: 20px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #1a1a1a;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
}

.service-detail-image {
    flex: 0.8;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.services-cta {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.contact-hero {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 20px;
    color: #495057;
}

.contact-content-asymmetric {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-right: 40px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    margin-top: 60px;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.contact-map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-map-section > p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 25px;
}

.location-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.location-info p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.contact-cta-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background-color: #007bff;
    border-radius: 8px;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-cta-section p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

.thanks-hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-info p {
    font-size: 17px;
    color: #0c5460;
    margin: 0;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.step-number {
    background-color: #007bff;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

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

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

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 8px;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .problem-section > div,
    .about-story,
    .approach-section-asymmetric,
    .contact-content-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

    .hero-content-left h1,
    .about-intro h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

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

    .testimonial-card.left-offset,
    .testimonial-card.right-offset,
    .testimonial-card.center-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 30px;
    }

    .about-intro {
        margin-left: 0;
    }

    .method-blocks,
    .values-grid,
    .cta-buttons {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .service-card {
        margin-top: 0 !important;
    }

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