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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --accent-color: #d4a574;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 20px rgba(0,0,0,0.12);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.btn-accept:hover {
    background: #a8d40e;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right a {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-cta:hover {
    background: #3d7a3e;
    transform: translateY(-2px);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ede8 100%);
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3d7a3e;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.intro-asymmetric {
    padding: 100px 20px;
    background: var(--white);
}

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

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--dark-color);
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.intro-image {
    flex: 0.8;
}

.intro-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-section {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 20px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.trust-icon {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 15px;
    color: #bbb;
}

.services-showcase {
    padding: 100px 20px;
    background: var(--light-color);
}

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

.services-split {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonials-flow {
    padding: 100px 20px;
    background: var(--white);
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonial-cards {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 600;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--dark-color);
    position: relative;
    padding-left: 30px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
}

.service-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

.btn-submit:hover {
    background: #3d7a3e;
    transform: translateY(-2px);
}

.cta-urgent {
    background: var(--accent-color);
    padding: 80px 20px;
    text-align: center;
}

.cta-urgent h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.cta-urgent p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

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

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

.footer-column ul li a {
    color: #bbb;
    font-size: 14px;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d7a3e 100%);
    color: var(--white);
    padding: 100px 20px 80px;
    text-align: center;
}

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

.hero-lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background: var(--white);
}

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

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--dark-color);
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.story-image {
    flex: 0.7;
}

.story-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-color);
}

.team-section {
    padding: 100px 20px;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.member-photo img {
    width: 100%;
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.member-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-color);
}

.process-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-color);
}

.services-detailed {
    padding: 80px 20px;
    background: var(--white);
}

.service-category {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.service-category h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 16px;
}

.price-table {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    gap: 40px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--white);
}

.price-service {
    flex: 1;
}

.price-service h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.price-service p {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.6;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.info-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.info-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-color);
}

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

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 24px;
}

.map-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-color);
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

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

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--light-color);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.thanks-info p {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 600;
}

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

.thanks-next h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-color);
    padding-left: 30px;
    position: relative;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 60px 20px 100px;
    background: var(--white);
}

.legal-intro {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.legal-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    font-size: 14px;
    color: var(--gray-color);
    font-style: italic;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 40px;
    }

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

    .intro-block {
        flex-direction: column;
        gap: 40px;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .form-container {
        flex-direction: column;
        gap: 40px;
    }

    .story-split {
        flex-direction: column;
        gap: 40px;
    }

    .contact-split {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-split {
        padding: 15px 20px;
    }

    .nav-right {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-right a {
        font-size: 14px;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 40px 20px;
    }

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

    .service-form {
        padding: 24px;
    }

    .thanks-content {
        padding: 40px 24px;
    }
}