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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-card {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
    margin: 0;
}

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.intro-cards {
    padding: 80px 15%;
    background-color: var(--bg-white);
}

.card-intro {
    text-align: center;
}

.card-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.card-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #bdc3c7;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2980b9;
}

.why-us-cards {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.why-us-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-card img {
    width: 50%;
    border-radius: 10px;
    background-color: #95a5a6;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 80px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

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

.cta-card h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.form-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.form-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #856404;
}

.form-notice.success {
    background-color: #d4edda;
    border-left-color: var(--success-color);
    color: #155724;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fffbf0;
    border-top: 2px solid #ffc107;
}

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

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

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: white;
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: var(--success-color);
    color: white;
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 5%;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro-cards {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.about-card-main {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.philosophy-cards {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.philosophy-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.philosophy-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
}

.process-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.values-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #95a5a6;
}

.value-card h3 {
    font-size: 20px;
    margin: 20px 25px 10px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 25px 25px;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-large {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-detail-content li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.btn-select-service {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.services-comparison {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.services-comparison h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.comparison-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.comparison-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.recommendation {
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-services {
    padding: 80px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 5%;
    background-color: var(--bg-white);
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
}

.contact-info-card {
    flex: 1;
    max-width: 500px;
}

.contact-info-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
    max-width: 500px;
    background-color: #95a5a6;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-cta-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.contact-cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-cta-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.location-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.location-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.location-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #95a5a6;
}

.location-card img {
    width: 100%;
    height: auto;
    display: block;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: white;
}

.location-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.location-overlay p {
    font-size: 16px;
}

.faq-contact {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-hero {
    padding: 100px 5%;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-card {
    text-align: center;
    max-width: 800px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.selected-service-info h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-price {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

.thanks-portfolio {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.thanks-portfolio h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.portfolio-preview-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-card {
    width: 100%;
    max-width: 350px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #95a5a6;
}

.portfolio-card p {
    padding: 20px;
    font-size: 15px;
    color: var(--text-dark);
    text-align: center;
}

.legal-page {
    padding: 60px 10%;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

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

    .feature-card,
    .feature-card.reverse {
        flex-direction: column;
    }

    .feature-card img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .about-card-main,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-content {
        flex-direction: column;
    }

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