* {
    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: #2a2a2a;
    background: #fafafa;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 30px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 11px;
    color: #666;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 20px;
    background: white;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
}

.narrow-content p {
    margin-bottom: 30px;
}

.visual-break {
    width: 100%;
    overflow: hidden;
}

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

.problem-section {
    padding: 120px 20px;
    background: #f5f5f5;
}

.offset-content {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 100px;
}

.offset-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.offset-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 700px;
}

.problem-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #2c5f2d;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    max-width: 200px;
}

.insight-reveal {
    padding: 100px 20px;
    background: white;
}

.two-col-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.col-text {
    flex: 1.2;
}

.col-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.col-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.col-image {
    flex: 0.8;
    background: #e8e8e8;
}

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

.trust-building {
    padding: 120px 20px;
    background: #f9f9f9;
}

.centered-trust {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.centered-trust h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: #2c5f2d;
}

.visual-separator {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #1a1a1a;
}

.visual-separator img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.services-reveal {
    padding: 120px 20px;
    background: white;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 70px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 3px solid #2c5f2d;
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2c5f2d;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #ddd;
}

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

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #444;
}

.service-features {
    margin: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features span {
    font-size: 14px;
    color: #555;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #2c5f2d;
    margin: 0 25px 25px;
}

.select-service-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 16px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #234d23;
}

.order-form-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #555;
}

.selected-service-display {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2c5f2d;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    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: #2c5f2d;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.benefits-detailed {
    padding: 120px 20px;
    background: #1a1a1a;
    color: white;
}

.benefits-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #a8d5a8;
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #d0d0d0;
}

.final-cta {
    padding: 120px 20px;
    background: white;
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #234d23;
    transform: scale(1.05);
}

.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a8d5a8;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

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

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a8d5a8;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #234d23;
}

.cookie-btn.reject {
    background: #555;
    color: white;
}

.cookie-btn.reject:hover {
    background: #444;
}

.page-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 80px;
    background: #1a1a1a;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.about-story {
    padding: 80px 20px;
    background: white;
}

.about-story h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.timeline-visual {
    padding: 100px 20px;
    background: #f5f5f5;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.year {
    font-size: 32px;
    font-weight: 800;
    color: #2c5f2d;
    min-width: 100px;
}

.timeline-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.values-section {
    padding: 100px 20px;
    background: white;
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-preview {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.team-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.team-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.cta-about {
    padding: 100px 20px;
    background: #1a1a1a;
}

.cta-about .cta-content h2 {
    color: white;
}

.cta-about .cta-content p {
    color: #bbb;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-full {
    padding: 100px 20px;
    background: white;
}

.service-detailed {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

.service-includes h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.service-includes ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.service-price-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.service-price-box.featured {
    background: #e8f5e8;
    border: 2px solid #2c5f2d;
}

.service-price-box .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5f2d;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.price-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #2c5f2d;
}

.service-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: #234d23;
}

.financing-info {
    padding: 80px 20px;
    background: #f5f5f5;
}

.financing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.financing-container h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.info-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-hero {
    padding: 120px 20px 60px;
    background: #f5f5f5;
    text-align: center;
}

.contact-intro h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
}

.contact-info-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

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

.faq-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.thanks-section {
    padding: 120px 20px;
    background: white;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.thanks-service-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
}

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

.btn-primary {
    padding: 16px 40px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 40px;
    background: white;
    color: #2c5f2d;
    text-decoration: none;
    border: 2px solid #2c5f2d;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
}

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

.legal-page {
    padding: 120px 20px 80px;
    background: white;
}

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

.legal-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #333;
}

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

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cookies-table thead {
    background: #f5f5f5;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid #ddd;
}

.cookies-table td {
    padding: 12px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 40px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .floating-nav {
        top: 10px;
        padding: 10px 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-notice {
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
    }

    .offset-content {
        padding-left: 20px;
    }

    .two-col-asymmetric {
        flex-direction: column;
    }

    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

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

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