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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f6f3;
    --background-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(--background-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #c49663;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.magazine-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-overlay {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-column {
    flex: 1;
    max-width: 550px;
}

.hero-text-column h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-column {
    flex: 1;
}

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

.magazine-intro {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.intro-narrow p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.magazine-grid-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.grid-three-col {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.col-image {
    flex: 1;
}

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

.col-text {
    flex: 1.2;
    padding: 2rem 1rem;
}

.col-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.col-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.col-image-small {
    flex: 0.8;
}

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

.testimonial-inline {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--background-white);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-style: normal;
}

.problem-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.problem-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1.2;
}

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

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

.styled-list {
    list-style: none;
    margin: 2rem 0;
}

.styled-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.problem-image {
    flex: 1;
}

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

.insight-section {
    background-color: var(--primary-color);
    padding: 6rem 2rem;
}

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

.insight-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.insight-container h2 {
    font-size: 2.8rem;
    color: var(--background-white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-text {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.break-image-full {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.break-overlay p {
    font-size: 2.5rem;
    color: var(--background-white);
    font-weight: 300;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

.trust-building {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.trust-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-col {
    flex: 1;
}

.trust-col h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-col p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.trust-col img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: var(--background-light);
    padding: 2rem;
    border-left: 3px solid var(--secondary-color);
}

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

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.benefits-reveal {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

.section-title-centered {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

.cta-mid {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

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

.cta-box h3 {
    font-size: 2.5rem;
    color: var(--background-white);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c49663;
    transform: translateY(-2px);
}

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.services-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.select-service:hover {
    background-color: #1a2a3a;
}

.select-service.selected {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.main-form {
    background-color: var(--background-white);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.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: 1px solid var(--border-color);
    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(--secondary-color);
}

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

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

.final-cta {
    padding: 4rem 2rem;
    background-color: var(--background-white);
    border-top: 1px solid var(--border-color);
}

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

.final-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c0c0c0;
}

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

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

.footer-col ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.3);
}

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

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

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-light);
}

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

.about-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.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;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

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

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

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

.philosophy-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.philosophy-item {
    flex: 1;
    background-color: var(--background-white);
    padding: 2.5rem;
    border-top: 4px solid var(--secondary-color);
}

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

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

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.values-layout {
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    padding: 2rem;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
}

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

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
}

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

.approach-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

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

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

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

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #755f48;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-detail.highlight {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.premium-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-select {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-select:hover {
    background-color: #1a2a3a;
}

.services-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    background-color: var(--background-light);
    padding: 2rem;
}

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

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

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

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

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

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cta:hover {
    background-color: #755f48;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

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

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.contact-item .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
}

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

.next-steps {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

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

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step-box {
    flex: 1;
    background-color: var(--background-white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-contact {
    text-align: center;
    padding: 4rem 2rem;
}

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

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

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.thanks-container {
    text-align: center;
    background-color: var(--background-light);
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

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

.service-info {
    background-color: var(--background-white);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.thanks-details {
    text-align: left;
    background-color: var(--background-white);
    padding: 2rem;
    margin: 2rem 0;
}

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

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

.thanks-details ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

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

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

.thanks-contact p {
    font-size: 1rem;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.legal-container {
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-overlay,
    .grid-three-col,
    .problem-layout,
    .trust-layout,
    .about-layout,
    .philosophy-grid,
    .values-layout,
    .approach-steps,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

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

    .testimonial-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .hamburger {
        display: flex;
    }

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

    .large-text {
        font-size: 1.5rem;
    }

    .testimonial-inline p {
        font-size: 1.2rem;
    }

    .services-magazine {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .benefits-magazine {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}