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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 20px;
}

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

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

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

.main-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #3498db;
}

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #ffffff;
    transform: translateX(-40px);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image-offset {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 700px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

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

.story-section {
    padding: 100px 30px;
    background: #ffffff;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto 0 15%;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 80px 30px;
    background: #f8f9fa;
}

.overlap-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.problem-card {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(40px);
    z-index: 2;
}

.problem-card h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.problem-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.solution-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    transform: translateX(-30px);
}

.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-reveal {
    padding: 120px 30px;
    background: linear-gradient(to right, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto 0 10%;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-building {
    padding: 100px 30px;
    background: #ffffff;
}

.credentials-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.stat-block {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.stat-left {
    transform: translateY(-20px);
    flex: 1;
    min-width: 280px;
}

.stat-right {
    transform: translateY(30px);
    flex: 1;
    min-width: 280px;
}

.stat-center {
    transform: translateY(5px);
    flex: 1;
    min-width: 280px;
}

.stat-block h3 {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 15px;
}

.stat-block p {
    font-size: 18px;
    color: #2c3e50;
}

.testimonials-scattered {
    padding: 100px 30px;
    background: #ecf0f1;
}

.testimonials-scattered h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #2c3e50;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 320px;
}

.testimonial-offset-1 {
    transform: translateY(-25px);
}

.testimonial-offset-2 {
    transform: translateY(15px);
}

.testimonial-offset-3 {
    transform: translateY(-10px);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.testimonial .author {
    font-style: italic;
    color: #7f8c8d;
    font-size: 15px;
}

.benefits-reveal {
    padding: 100px 30px;
    background: #ffffff;
}

.benefits-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.benefit-image-left {
    flex: 0 0 45%;
    transform: rotate(-3deg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-content {
    flex: 1;
}

.benefit-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

.services-pricing {
    padding: 120px 30px;
    background: #f8f9fa;
}

.services-pricing h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 80px;
    color: #2c3e50;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
}

.service-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #34495e;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

.btn-select {
    margin: 0 25px 30px;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
}

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

.cta-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(-60px);
}

.cta-asymmetric h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-asymmetric p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-form-section {
    padding: 100px 30px;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto 0 20%;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    transform: rotate(1deg);
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #2c3e50;
}

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

.service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.service-form input,
.service-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.service-form input:focus,
.service-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.disclaimer-section {
    padding: 60px 30px;
    background: #fef9e7;
    border-top: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #34495e;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-block a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-container {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.service-confirmation {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.next-steps {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.service-detail-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 25px;
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.about-hero {
    padding: 120px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 30px;
    background: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.story-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.expertise-section {
    padding: 100px 30px;
    background: #ffffff;
}

.expertise-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.expertise-image {
    flex: 0 0 40%;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.expertise-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.expertise-content ul {
    list-style: none;
    margin-top: 25px;
}

.expertise-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.expertise-content li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.approach-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: #2c3e50;
}

.approach-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 250px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-commitment {
    padding: 100px 30px;
    background: #ffffff;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto 0 20%;
}

.commitment-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 25px;
}

.contact-hero {
    padding: 100px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-info-section {
    padding: 100px 30px;
    background: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.contact-additional {
    padding: 80px 30px;
    background: #f8f9fa;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 30px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .hero-image-offset {
        right: -60px;
        width: 600px;
        height: 400px;
    }

    .services-asymmetric {
        justify-content: center;
    }
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        transform: translateX(0);
        max-width: 100%;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        transform: rotate(0);
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .overlap-blocks,
    .benefits-layout,
    .story-container,
    .expertise-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .header-content {
        justify-content: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .page-hero h1,
    .about-hero h1 {
        font-size: 36px;
    }

    .thanks-container {
        padding: 40px 25px;
    }

    .form-container {
        padding: 30px;
        margin: 0 auto;
        transform: rotate(0);
    }

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