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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #b2bec3;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.link-inline {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s;
}

.link-inline:hover {
    border-bottom-color: transparent;
}

.services-preview {
    padding: 6rem 4rem;
    background-color: var(--bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .price {
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.process-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 4rem;
    background-color: var(--bg-light);
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials {
    padding: 6rem 4rem;
    background-color: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial .author {
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

.form-section {
    padding: 6rem 4rem;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-light);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    line-height: 1.6;
    color: var(--bg-light);
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.08);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--bg-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-header {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 4rem;
    background-color: var(--bg-light);
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-approach {
    padding: 5rem 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.approach-right {
    flex: 1;
    background-color: #95a5a6;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.experience-stats {
    padding: 5rem 4rem;
    background-color: var(--bg-light);
    text-align: center;
}

.experience-stats h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.philosophy-section {
    padding: 5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.philosophy-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 5rem 4rem;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

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

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

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

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-text ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.price-box {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 4rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.pricing-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-services {
    padding: 5rem 4rem;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
}

.contact-info-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-block {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.note-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-map-section {
    margin-bottom: 4rem;
}

.contact-map-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.map-placeholder {
    position: relative;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.85);
    color: var(--bg-white);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.location-note {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-additional {
    margin-bottom: 4rem;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-additional p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-additional ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.contact-additional ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-faq {
    margin-bottom: 4rem;
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.selected-service {
    font-weight: 700;
    color: var(--accent-color);
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps ol {
    padding-left: 2rem;
}

.next-steps ol li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.thanks-note {
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.thanks-note p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 4rem 5rem;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li,
.legal-page ol li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.legal-page a:hover {
    border-bottom-color: transparent;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .about-split,
    .process-split,
    .story-content,
    .team-approach,
    .service-detail,
    .contact-info-section {
        flex-direction: column;
    }

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

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

    .about-split,
    .process-split,
    .services-preview,
    .testimonials,
    .form-section,
    .about-story,
    .values-section,
    .team-approach,
    .services-detailed,
    .contact-main,
    .thanks-container,
    .legal-page {
        padding: 3rem 2rem;
    }

    .service-detail {
        padding: 2rem;
    }
}
