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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #e0e7ee;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    color: #8a96a3;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.hero-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 20px;
}

.hero-image-right {
    flex: 1;
    background-color: #e0e7ee;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-primary-large {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-large:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #64748b;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #475569;
}

.btn-card {
    width: 100%;
    background-color: #1a2332;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-card:hover {
    background-color: #2c3e50;
}

.btn-service {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1d4ed8;
}

.trust-indicators {
    background-color: #ffffff;
    padding: 60px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 8px;
    font-weight: 700;
}

.trust-item p {
    color: #5a6c7d;
    font-size: 1rem;
}

.intro-statement {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-statement h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a2332;
    line-height: 1.3;
}

.intro-statement p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-preview-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.service-image-left {
    flex: 1;
    background-color: #e0e7ee;
}

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

.service-content-right {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-right h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a2332;
}

.service-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.service-highlights li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 1rem;
}

.service-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.featured-services {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a2332;
}

.services-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.process-flow {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-flow h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #1a2332;
}

.process-steps {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a2332;
}

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

.testimonials-inline {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a2332;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 35px 40px;
    margin-bottom: 25px;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
}

.full-width-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-overlay p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #e0e7ee;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a2332;
    text-align: center;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    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: #2563eb;
}

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.7;
    padding: 20px;
    background-color: #fffbf0;
    border-left: 3px solid #f59e0b;
    border-radius: 4px;
}

.main-footer {
    background-color: #1a2332;
    color: #e0e7ee;
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

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

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

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8a96a3;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #e0e7ee;
}

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    background-color: #64748b;
    color: #ffffff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-reject:hover {
    background-color: #475569;
}

.page-hero {
    background-color: #1a2332;
    color: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.about-intro-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.about-image {
    flex: 1;
    background-color: #e0e7ee;
}

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

.about-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a2332;
}

.about-content p {
    color: #5a6c7d;
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a2332;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px 25px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2332;
}

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

.team-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-overview h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a2332;
}

.team-overview p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.experience-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a2332;
}

.experience-content p {
    color: #5a6c7d;
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.experience-image {
    flex: 1;
}

.experience-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-about {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.services-intro {
    padding: 40px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-item-detailed {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

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

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-detail-content p {
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    color: #64748b;
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-image {
    flex: 1;
    max-width: 450px;
}

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

.service-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a2332;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a2332;
}

.contact-block p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
}

.note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.contact-additional {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a2332;
}

.contact-additional p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

.contact-additional a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-directions {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-directions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a2332;
}

.directions-grid {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2332;
}

.direction-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a2332;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-details {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #e0f2fe;
    padding: 15px 25px;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a2332;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 15px 0;
    padding-left: 45px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    background-color: #2563eb;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-info {
    background-color: #fff8e1;
    padding: 20px 25px;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    margin: 0;
    color: #5a6c7d;
}

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

.thanks-additional {
    padding: 60px 0;
    background-color: #ffffff;
}

.thanks-additional h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a2332;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a2332;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a2332;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #1a2332;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.update-date {
    margin-top: 40px;
    font-style: italic;
    color: #64748b;
    font-size: 0.9rem;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ad-notice {
        margin-top: 15px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 50px 30px;
    }

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

    .hero-image-right {
        min-height: 300px;
    }

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

    .service-preview-split {
        flex-direction: column;
    }

    .service-content-right {
        padding: 40px 30px;
    }

    .services-cards {
        flex-direction: column;
    }

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

    .service-item-detailed,
    .service-item-detailed.reverse {
        flex-direction: column;
        padding: 30px 20px;
    }

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

    .about-intro-split {
        flex-direction: column;
    }

    .about-content {
        padding: 40px 30px;
    }

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

    .experience-split {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}