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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.nav-brand {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.nav-brand a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: var(--secondary-color);
}

.nav-footer {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.nav-small:hover {
    color: white;
}

.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

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

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

.hero-text-block {
    max-width: 600px;
}

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

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.hero-image-renovation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.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(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.intro-statement {
    padding: 5rem 4rem;
    background-color: white;
}

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

.large-text {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 300;
}

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

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.split-image-tools {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.value-card {
    flex: 1 1 300px;
    padding: 3rem 2rem;
    margin: 1rem;
    background-color: white;
    border-left: 4px solid var(--secondary-color);
}

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

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

.testimonial-split {
    display: flex;
    min-height: 500px;
    background-color: white;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    max-width: 600px;
}

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

.testimonial-content cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.testimonial-image-bathroom {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

.services-header {
    text-align: center;
    padding: 0 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-split {
    display: flex;
    margin-bottom: 0;
    background-color: white;
    min-height: 500px;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.service-image-tiles {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-image-plaster {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-image-screed {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.service-image-painting {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.service-image-bathroom-full {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.service-image-drywall {
    background: linear-gradient(135deg, #f77062 0%, #fe5196 100%);
}

.service-details {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    padding: 5rem 0;
    background-color: white;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
    padding: 4rem;
    background-color: var(--primary-color);
    color: white;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background-color: var(--bg-light);
}

.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: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.trust-indicators {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
}

.trust-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    color: white;
}

.trust-item h4 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.final-cta-split {
    display: flex;
    min-height: 500px;
}

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

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

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

.final-cta-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.final-cta-image-renovation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

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

.sticky-cta-btn:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.footer-column {
    flex: 1 1 250px;
    margin: 1rem 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.page-header-split {
    display: flex;
    min-height: 400px;
    align-items: center;
}

.header-content {
    flex: 1;
    padding: 4rem;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
}

.header-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.about-header-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-header-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.contact-header-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

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

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

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

.philosophy-image {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

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

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

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

.approach-card {
    flex: 1 1 280px;
    padding: 2.5rem;
    margin: 1rem;
    background-color: white;
    border-top: 4px solid var(--secondary-color);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.team-section {
    padding: 5rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.values-detail-split {
    display: flex;
    background-color: white;
    min-height: 500px;
}

.values-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.values-detail-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.values-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.values-list {
    list-style: none;
}

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

.values-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-about-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-intro-split {
    display: flex;
    margin-bottom: 3rem;
}

.intro-text {
    flex: 1;
    padding: 4rem;
    background-color: white;
}

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

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.services-intro-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-detail-section {
    background-color: white;
    padding: 3rem 0;
}

.service-detail-section.alt-bg {
    background-color: var(--bg-light);
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.tile-detail-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.plaster-detail-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.screed-detail-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.painting-detail-image {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.bathroom-detail-image {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.drywall-detail-image {
    background: linear-gradient(135deg, #f77062 0%, #fe5196 100%);
}

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

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

.cta-inline:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.service-cta-section {
    padding: 5rem 4rem;
    background-color: var(--primary-color);
    text-align: center;
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
}

.contact-info-block {
    flex: 1;
    padding: 4rem;
}

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

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

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.contact-visual-block {
    flex: 1;
    padding: 2rem;
}

.contact-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}

.contact-office-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-highlight {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.contact-highlight h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-additional {
    padding: 3rem 4rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-additional a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 45%;
    padding: 2rem;
    margin: 1rem;
    background-color: var(--bg-light);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

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

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

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

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.step {
    flex: 1 1 250px;
    padding: 1.5rem;
    margin: 1rem;
    background-color: var(--bg-light);
    border-top: 3px solid var(--secondary-color);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.thanks-selected-service {
    padding: 1.5rem;
    background-color: var(--bg-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.thanks-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

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

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-back a {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .cookie-banner {
        left: 200px;
    }

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .split-section,
    .hero-split,
    .testimonial-split,
    .service-split,
    .final-cta-split,
    .form-split,
    .contact-split-section,
    .service-detail-split,
    .values-detail-split,
    .services-intro-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .split-content,
    .split-image,
    .testimonial-content,
    .testimonial-image,
    .service-details,
    .service-image,
    .final-cta-content,
    .final-cta-image,
    .form-intro,
    .form-container,
    .contact-info-block,
    .contact-visual-block,
    .service-detail-content,
    .service-detail-image,
    .values-image,
    .values-text,
    .intro-text,
    .intro-image {
        min-height: 400px;
    }

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

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .cookie-banner {
        left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

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

    .split-content h2,
    .services-header h2,
    .final-cta-content h2 {
        font-size: 2rem;
    }

    .hero-left,
    .split-content,
    .form-intro,
    .form-container,
    .final-cta-content,
    .service-details,
    .contact-info-block,
    .service-detail-content {
        padding: 2.5rem 1.5rem;
    }

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

    .value-card {
        margin: 0.5rem 0;
    }

    .trust-wrapper {
        flex-direction: column;
    }

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

    .approach-card {
        margin: 0.5rem 0;
    }

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

    .faq-item {
        margin: 0.5rem 0;
    }

    .next-steps {
        flex-direction: column;
    }

    .step {
        margin: 0.5rem 0;
    }

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

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

    .cookie-content p {
        margin-right: 0;
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1,
    .header-content h1 {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-details h3 {
        font-size: 1.5rem;
    }
}
