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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

.nav-asymmetric {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.nav-links a.active {
    color: #3498db;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #3498db;
}

.ad-notice {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    border-left: 2px solid #3498db;
}

.hero-asymmetric {
    position: relative;
    height: 85vh;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.3) 0%, rgba(44,62,80,0.6) 100%);
}

.hero-content-offset {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    padding-left: 80px;
}

.intro-block-left h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.intro-image-right {
    flex: 1;
    margin-top: -40px;
    background-color: #ecf0f1;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    object-fit: cover;
}

.insight-diagonal {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 100px 40px;
    margin-bottom: 120px;
    position: relative;
    transform: skewY(-2deg);
}

.insight-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.03);
}

.insight-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.insight-content h2 {
    color: #ffffff;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    background-color: #ffffff;
    padding: 36px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.insight-card.offset {
    margin-top: 40px;
}

.insight-card h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.insight-card p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.services-irregular {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.services-header-offset {
    margin-left: 15%;
    margin-bottom: 60px;
    max-width: 600px;
}

.services-header-offset h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.service-card {
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card.medium {
    flex: 1 1 calc(55% - 15px);
}

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

.service-card.small-offset {
    flex: 1 1 calc(38% - 15px);
    margin-left: 5%;
}

.service-card.medium-offset {
    flex: 1 1 calc(42% - 15px);
    margin-right: 8%;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.service-price {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateX(4px);
}

.testimonials-overlapping {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.testimonials-overlapping h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 36px 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
    max-width: 700px;
}

.testimonial-block.offset-right {
    align-self: flex-end;
    border-left: none;
    border-right: 4px solid #27ae60;
    margin-right: 60px;
}

.testimonial-text {
    font-size: 17px;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.7;
}

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

.form-section-diagonal {
    background-color: #ecf0f1;
    padding: 80px 40px;
    margin-bottom: 100px;
    transform: skewY(2deg);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: skewY(-2deg);
    margin-left: 25%;
}

.form-container-offset h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

.form-error {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.disclaimer-offset {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.disclaimer-content {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px 28px;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero-offset {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 0 40px;
    margin-left: 20%;
}

.page-hero-offset h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-block.left {
    flex-direction: row;
}

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

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

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

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

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

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

.service-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.service-features li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-detail-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin: 24px 0 16px;
}

.cta-services-bottom {
    background-color: #3498db;
    padding: 80px 40px;
    text-align: center;
}

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

.cta-content-offset h2 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 17px;
    color: #ecf0f1;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.about-hero-diagonal {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    flex: 1;
    padding-right: 40px;
}

.about-hero-content h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-intro {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background-color: #ecf0f1;
    margin-top: -30px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-story-offset {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 40px;
    margin-left: 30%;
}

.story-content-narrow h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content-narrow p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-asymmetric {
    background-color: #ecf0f1;
    padding: 80px 40px;
    margin-bottom: 80px;
}

.values-asymmetric h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-block {
    background-color: #ffffff;
    padding: 36px 32px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
}

.value-block.offset-left {
    margin-left: 40px;
}

.value-block.offset-right {
    margin-right: 40px;
}

.value-block.center {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

.value-block h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 600;
}

.value-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-text p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.team-offset {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.team-offset h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    margin-left: 10%;
}

.team-intro {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: 10%;
}

.team-image-container {
    background-color: #ecf0f1;
    margin-right: 10%;
}

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

.cta-about-bottom {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 80px 40px;
    margin-bottom: 80px;
}

.cta-box-offset {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    margin-left: 20%;
}

.cta-box-offset h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box-offset p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-hero-offset {
    max-width: 800px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.contact-hero-offset h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-info-asymmetric {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-block-left {
    flex: 1;
    background-color: #ecf0f1;
    padding: 50px 40px;
}

.contact-block-left h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-block-right {
    flex: 1;
    padding: 20px 0;
}

.contact-block-right h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-block-right p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-cta-section {
    background-color: #3498db;
    padding: 80px 40px;
    margin-bottom: 80px;
}

.contact-cta-offset {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-right: 20%;
}

.contact-cta-offset h2 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta-offset p {
    font-size: 17px;
    color: #ecf0f1;
    margin-bottom: 30px;
    line-height: 1.7;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.map-info {
    background-color: #ecf0f1;
    padding: 60px 40px;
    text-align: center;
}

.map-info p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-hero {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-detail {
    background-color: #ecf0f1;
    padding: 20px 24px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
    border-left: 4px solid #3498db;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

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

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

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

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

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

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 14px 0 14px 24px;
}

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

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

.legal-content a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        height: auto;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-content-offset {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: -60px 20px 40px;
    }

    .intro-offset,
    .about-hero-diagonal,
    .approach-split,
    .contact-info-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

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

    .services-asymmetric-grid {
        flex-direction: column;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small,
    .service-card.small-offset,
    .service-card.medium-offset {
        flex: 1 1 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .intro-block-left,
    .services-header-offset,
    .form-container-offset,
    .about-story-offset,
    .page-hero-offset,
    .team-offset h2,
    .team-intro {
        margin-left: 0;
        padding-left: 0;
    }

    .cta-box-offset,
    .contact-cta-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .value-block.offset-left,
    .value-block.offset-right {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

    .hero-content-offset h1 {
        font-size: 30px;
    }

    .insight-grid,
    .values-grid,
    .footer-container {
        flex-direction: column;
    }

    .testimonial-block.offset-right {
        margin-right: 0;
    }

    .form-container-offset {
        padding: 35px 25px;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 26px !important;
    }
}