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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.5;
}

.cta-primary, .cta-secondary, .cta-outline {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

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

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

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

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.narrow-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.visual-break {
    padding: 0;
    background: var(--bg-light);
}

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

.img-caption {
    text-align: center;
    padding: 25px 20px;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
}

.problem-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.insight-section {
    padding: 120px 20px;
    background: var(--bg-white);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.split-left, .split-right {
    flex: 1;
}

.split-right h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

.trust-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.trust-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

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

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.urgency-section {
    padding: 80px 20px;
    background: #fef5e7;
}

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

.urgency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.services-preview {
    padding: 120px 20px;
    background: var(--bg-white);
}

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

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-scope {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 20px;
}

.price-reveal {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

.select-service-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

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

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--accent-color);
}

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

.submit-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-privacy {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

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

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-header {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
}

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

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

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

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

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

.process-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.process-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 15px;
}

.service-detail-card.reverse {
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
}

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

.service-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-style: italic;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-includes {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.services-cta {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form-wrapper > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.map-section {
    padding: 0;
}

.map-placeholder {
    position: relative;
    height: 400px;
    background: var(--bg-light);
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.step-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.step-item .step-number {
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.thanks-info {
    margin-top: 40px;
    padding: 20px;
    background: #fef5e7;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

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

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

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

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-container ul {
    margin: 15px 0 25px 20px;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

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

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

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-item {
        flex: 1;
        min-width: 280px;
    }

    .split-content {
        flex-direction: row;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 20px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 30px);
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

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

    .contact-container {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

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

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }

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

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