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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b7355;
    --accent-color: #c49b63;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

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

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

.main-header {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    background-color: #8b9da0;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--bg-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.intro-section {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
}

.intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.intro-image {
    flex: 1;
    background-color: #c4b5a0;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--accent-color);
}

.problem-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.problem-card {
    flex: 1.5;
    padding: 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-60px);
}

.problem-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.problem-visual {
    flex: 1;
    background-color: #9fa8a3;
}

.problem-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.insight-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.insight-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.insight-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
}

.benefits-reveal {
    padding: 7rem 2rem;
    background-color: var(--bg-white);
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefit-item.offset-top {
    margin-left: 10%;
}

.benefit-item img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    background-color: #b8a99a;
}

.benefit-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonials-section {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial.offset-left {
    margin-left: 15%;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.85;
}

.services-preview {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
}

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

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    width: calc(50% - 1.5rem);
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.offset-right {
    margin-top: 4rem;
}

.service-card.offset-left {
    margin-top: -4rem;
}

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

.service-card h3 {
    padding: 1.5rem 2rem 0.5rem;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 2rem 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.service-card .price {
    padding: 0 2rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-select {
    margin: 0 2rem 2rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 4rem);
}

.btn-select:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

.form-section {
    padding: 7rem 2rem;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.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: 2px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 1rem;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1e4520;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

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

.references-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: var(--bg-white);
    transition: color 0.3s ease;
}

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

.footer-column p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.about-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text {
    flex: 1.3;
}

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

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

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

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

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

.philosophy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.philosophy-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-card.offset-top {
    margin-top: 3rem;
}

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

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #a8a295;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-text {
    flex: 1.2;
}

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

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

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

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

.values-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-left: 5px solid var(--primary-color);
}

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

.value-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #d4a975;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(196, 155, 99, 0.4);
}

.services-full {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.service-detail {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
    background-color: #a9b3b0;
}

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

.service-info {
    flex: 1.2;
}

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

.service-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-features {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.services-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background-color: var(--bg-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.contact-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1.3;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    background-color: #b0ada8;
}

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

.map-placeholder {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
}

.map-info p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 100px;
}

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

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

.thanks-details {
    margin-bottom: 3rem;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

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

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

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

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

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro-offset,
    .about-layout,
    .team-container,
    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .problem-container {
        flex-direction: column;
    }

    .problem-card {
        transform: translateY(0);
    }

    .benefit-item {
        flex-direction: column;
    }

    .benefit-item.offset-top {
        margin-left: 0;
    }

    .benefit-item img {
        width: 100%;
    }

    .testimonial.offset-left {
        margin-left: 0;
    }

    .service-card {
        width: 100%;
    }

    .service-card.offset-right,
    .service-card.offset-left {
        margin-top: 0;
    }

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

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

    .philosophy-card.offset-top {
        margin-top: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-overlay {
        left: 5%;
        right: 5%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-section {
        padding: 4rem 1.5rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }
}