* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header-asymmetric {
    background-color: #1a2332;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #e0e6ed;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #95a5a6;
    border: 1px solid #95a5a6;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    margin-left: 1rem;
}

.asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-offset {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-20px);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(30px);
    background-color: #dee2e6;
}

.hero-image-right img {
    width: 100%;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem 3rem;
    align-items: flex-start;
}

.intro-block {
    flex: 1.5;
    padding-left: 4rem;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    line-height: 1.3;
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.visual-accent {
    flex: 1;
    transform: translateY(50px);
    background-color: #e9ecef;
}

.visual-accent img {
    width: 100%;
}

.staggered-content {
    display: flex;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    align-items: center;
}

.content-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(-30px);
}

.card-left {
    transform: translateX(-30px);
}

.content-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.content-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.image-overlay-right {
    flex: 1;
    transform: translateX(20px) translateY(-40px);
    background-color: #dee2e6;
}

.image-overlay-right img {
    width: 100%;
}

.services-irregular {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.services-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

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

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

.offset-4 {
    transform: translateY(40px);
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #dee2e6;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a2332;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section-offset {
    padding: 5rem 2rem;
    background-color: #1a2332;
    color: #ffffff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-staggered {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-left {
    transform: translateY(-30px);
}

.testimonial-right {
    transform: translateY(30px);
}

.testimonials-staggered p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonials-staggered cite {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: normal;
}

.form-section-irregular {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(-50px);
}

.form-intro {
    margin-bottom: 2.5rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-notice {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #95a5a6;
    text-align: center;
}

.form-notice a {
    color: #3498db;
}

.form-notice a:hover {
    text-decoration: underline;
}

.final-cta-offset {
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-asymmetric {
    background-color: #1a2332;
    color: #e0e6ed;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-col ul li a {
    color: #95a5a6;
    font-size: 0.95rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-actions {
    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: #3498db;
    color: #ffffff;
}

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

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

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

.about-hero-offset {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.about-intro {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(40px);
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-intro p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-image-right {
    flex: 1;
    transform: translateY(-30px);
    background-color: #dee2e6;
}

.about-image-right img {
    width: 100%;
}

.mission-staggered {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    align-items: flex-start;
}

.mission-block-left {
    flex: 1;
    transform: translateY(-20px);
}

.mission-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.mission-block-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-block-right {
    flex: 1;
    background-color: #1a2332;
    color: #ffffff;
    padding: 2.5rem;
    transform: translateY(40px);
}

.values-block-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.values-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.approach-irregular {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a2332;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-card {
    width: calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.approach-card:nth-child(1) {
    transform: translateY(-20px);
}

.approach-card:nth-child(2) {
    transform: translateY(30px);
}

.approach-card:nth-child(3) {
    transform: translateY(10px);
}

.approach-card:nth-child(4) {
    transform: translateY(-15px);
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.approach-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-offset {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a2332;
}

.team-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-visual {
    max-width: 1000px;
    margin: 0 auto;
    transform: translateX(-40px);
    background-color: #e9ecef;
}

.team-visual img {
    width: 100%;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.services-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.services-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.offset-left {
    flex-direction: row;
}

.offset-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

.service-detail-image img {
    width: 100%;
}

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.btn-service-cta {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.packages-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.packages-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.packages-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-info-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 5rem 2rem;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.contact-block-left {
    flex: 1;
    transform: translateY(30px);
}

.contact-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual-right {
    flex: 1;
    transform: translateY(-40px);
    background-color: #dee2e6;
}

.contact-visual-right img {
    width: 100%;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a2332;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    position: relative;
}

.step-card:nth-child(1) {
    transform: translateY(-15px);
}

.step-card:nth-child(2) {
    transform: translateY(20px);
}

.step-card:nth-child(3) {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.step-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-hero {
    display: flex;
    gap: 3rem;
    padding: 5rem 2rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-content {
    flex: 1;
    transform: translateX(-30px);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 1rem;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.next-steps ul {
    list-style: none;
    margin-bottom: 2rem;
}

.next-steps ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.thanks-visual {
    flex: 1;
    transform: translateY(40px);
    background-color: #e9ecef;
}

.thanks-visual img {
    width: 100%;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.updated {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

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

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

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .staggered-content,
    .mission-staggered,
    .contact-info-asymmetric,
    .thanks-hero,
    .about-hero-offset {
        flex-direction: column;
    }

    .hero-content-left h1,
    .about-intro h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

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

    .service-card {
        width: 100%;
    }

    .testimonials-staggered {
        flex-direction: column;
    }

    .form-wrapper {
        transform: translateX(0);
    }

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

    .offset-left,
    .offset-right {
        flex-direction: column;
    }

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

    .approach-card {
        width: 100%;
    }

    .main-nav {
        gap: 1rem;
    }

    .ad-label {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
