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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.active {
    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;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    right: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.hero-offset {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 3rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    top: -3rem;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(2deg);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76,175,80,0.3);
}

.intro-asymmetric {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.intro-text {
    flex: 2;
    padding-left: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.intro-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transform: rotate(-3deg);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    max-width: 200px;
}

.problem-section {
    padding: 6rem 3rem;
    background: white;
}

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

.problem-left {
    flex: 1;
    position: relative;
    left: -2rem;
    top: 2rem;
}

.problem-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.problem-right {
    flex: 1.5;
    padding-right: 2rem;
}

.problem-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.problem-right p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

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

.problem-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.trust-build {
    padding: 5rem 3rem;
    background: #2c2c2c;
    color: white;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-badge {
    background: #4CAF50;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 250px;
    transform: rotate(-5deg);
}

.trust-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-text {
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.insight-reveal {
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.insight-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-quote {
    margin-bottom: 3rem;
    padding-left: 5rem;
}

.insight-quote blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #4CAF50;
    line-height: 1.5;
    font-weight: 500;
}

.insight-body h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.insight-body p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.services-showcase {
    padding: 6rem 3rem;
    background: white;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 12px;
    width: calc(33.333% - 2rem);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-offset-1 {
    transform: translateY(-1rem);
}

.service-offset-2 {
    transform: translateY(1.5rem);
}

.service-offset-3 {
    transform: translateY(-0.5rem);
}

.service-offset-4 {
    transform: translateY(1rem);
}

.service-offset-5 {
    transform: translateY(-1.5rem);
}

.service-offset-6 {
    transform: translateY(0.5rem);
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #4CAF50;
}

.testimonial-layer {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.testimonial-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-card:first-child {
    transform: rotate(-2deg) translateY(-1rem);
}

.testimonial-card:last-child {
    transform: rotate(2deg) translateY(1rem);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: #666;
    font-weight: 600;
}

.form-section {
    padding: 6rem 3rem;
    background: white;
}

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

.form-intro {
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.form-intro p {
    font-size: 1.15rem;
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-push {
    padding: 5rem 3rem;
    background: #2c2c2c;
    color: white;
}

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

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 3rem 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(76,175,80,0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(76,175,80,0.5);
}

.about-hero {
    padding: 10rem 3rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #666;
}

.about-story {
    padding: 5rem 3rem;
    background: white;
}

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

.story-block {
    flex: 1.5;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.story-block p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    transform: rotate(3deg);
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.philosophy-section {
    padding: 5rem 3rem;
    background: #f8f9fa;
}

.philosophy-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2c2c;
}

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.philosophy-item p {
    color: #555;
    line-height: 1.7;
}

.team-credentials {
    padding: 5rem 3rem;
    background: white;
}

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

.credentials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.credentials-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    color: #666;
}

.values-section {
    padding: 5rem 3rem;
    background: #2c2c2c;
    color: white;
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-block {
    padding-left: 3rem;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.cta-about {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.services-header-section {
    padding: 10rem 3rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-header-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-header-section p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-detail-section.alt-layout {
    background: #f8f9fa;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.service-detail-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail-content ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.service-pricing-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #4CAF50;
    transform: translateY(-2px);
}

.services-cta-section {
    padding: 5rem 3rem;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.contact-header {
    padding: 10rem 3rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-main {
    padding: 5rem 3rem;
    background: white;
}

.contact-info {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 250px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.info-block a {
    color: #4CAF50;
    text-decoration: none;
}

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

.contact-note {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

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

.note-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.note-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.thanks-section {
    padding: 10rem 3rem 6rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.thanks-links a {
    padding: 0.9rem 2rem;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-links a:hover {
    background: #4CAF50;
}

.legal-section {
    padding: 10rem 3rem 4rem;
    background: white;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4CAF50;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding-top: 10rem;
    }

    .hero-content-left {
        padding-left: 0;
    }

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

    .hero-image-right {
        top: 0;
    }

    .intro-block-offset {
        flex-direction: column;
    }

    .intro-text {
        padding-left: 0;
    }

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

    .problem-left {
        left: 0;
        top: 0;
    }

    .problem-right {
        padding-right: 0;
    }

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

    .testimonial-offset {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .story-image {
        transform: rotate(0);
    }

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

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        right: 1.5rem;
        left: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 1.5rem;
    }

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

    .hero-content-left p {
        font-size: 1.1rem;
    }

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

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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