/* Reset and Base Styles */
* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    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);
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Asymmetric */
.hero-asymmetric {
    position: relative;
    min-height: 620px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background-color: #34495e;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.92;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.4) 0%, rgba(44, 62, 80, 0.6) 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.hero-text-block {
    background-color: #ffffff;
    padding: 60px 50px;
    max-width: 580px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateX(40px);
}

.hero-text-block h2 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Intro Narrative */
.intro-narrative {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.narrative-left {
    flex: 0 0 420px;
    background-color: #ecf0f1;
}

.narrative-left img {
    width: 100%;
}

.narrative-right {
    flex: 1;
}

.narrative-right h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 28px;
}

.narrative-right p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
}

/* Problem Amplification */
.problem-amplification {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.problem-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.problem-block-offset {
    transform: translateX(-30px);
    padding: 50px;
    background-color: #ffffff;
    max-width: 720px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem-block-offset h3 {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 24px;
}

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

.problem-list li {
    font-size: 17px;
    color: #2c3e50;
    padding: 14px 0 14px 32px;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.insight-block {
    align-self: flex-end;
    background-color: #3498db;
    padding: 40px 50px;
    max-width: 680px;
    transform: translateX(30px);
}

.insight-text {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}

/* Services Creative */
.services-creative {
    padding: 120px 40px;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: left;
    transform: translateX(60px);
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s ease;
    width: calc(50% - 20px);
    min-width: 340px;
}

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

.card-overlap-1 {
    transform: rotate(-1deg);
}

.card-overlap-2 {
    transform: rotate(1.2deg);
}

.card-overlap-3 {
    transform: rotate(-0.8deg);
}

.card-overlap-4 {
    transform: rotate(1.5deg);
}

.card-overlap-5 {
    transform: rotate(-1.3deg);
}

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

.service-image-wrap img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 32px;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Trust Building */
.trust-building {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

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

.trust-content-left {
    flex: 1;
    padding-right: 40px;
}

.trust-content-left h3 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 28px;
}

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

.trust-image-right {
    flex: 0 0 480px;
    background-color: #95a5a6;
    transform: translateY(-40px);
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 100px 40px;
    background-color: #2c3e50;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #bdc3c7;
    font-style: normal;
    font-weight: 600;
}

/* CTA Section Offset */
.cta-section-offset {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.cta-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

.cta-block h3 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 17px;
    color: #7f8c8d;
}

/* Form Section */
.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 60px 50px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
    transform: translateX(-20px);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

#selectedServiceDisplay {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 40px;
    background-color: #ecf0f1;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

/* About Page */
.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 40px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.about-hero-content h2,
.services-hero-content h2,
.contact-hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

.story-image {
    flex: 0 0 480px;
    background-color: #ecf0f1;
}

.story-content {
    flex: 1;
}

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

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

.philosophy-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.philosophy-wrapper h3 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
    padding: 36px;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.philosophy-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

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

.team-approach {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.approach-image {
    flex: 0 0 480px;
    background-color: #ecf0f1;
}

.values-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.values-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 28px;
}

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

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

.cta-about-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #3498db;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #ecf0f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Services Page */
.services-full {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
}

.service-detail-list {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 50px;
    background-color: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 420px;
    background-color: #34495e;
}

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

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

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

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

.service-features li {
    font-size: 15px;
    color: #2c3e50;
    padding: 10px 0 10px 28px;
    position: relative;
}

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

.service-pricing {
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-right: 12px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
}

.services-cta {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 17px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Contact Page */
.contact-info-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-main-info {
    flex: 1;
}

.contact-main-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.contact-detail h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

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

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

.note-text {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-image-section {
    flex: 0 0 480px;
    background-color: #ecf0f1;
}

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

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

.additional-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

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

.contact-cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.thanks-content {
    flex: 1;
}

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

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

.thanks-details {
    background-color: #e8f8f5;
    padding: 20px 24px;
    margin-bottom: 32px;
    border-left: 4px solid #27ae60;
}

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

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 40px;
}

.steps-list li {
    font-size: 16px;
    color: #34495e;
    padding: 12px 0 12px 48px;
    position: relative;
    counter-increment: step-counter;
    margin-bottom: 12px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background-color: #3498db;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.thanks-image {
    flex: 0 0 460px;
    background-color: #ecf0f1;
}

/* Legal Pages */
.legal-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 48px;
}

.legal-article {
    margin-bottom: 48px;
}

.legal-article h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-article h4 {
    font-size: 20px;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 12px;
    margin-top: 24px;
}

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

.legal-article ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-article ul li {
    font-size: 15px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-update {
    font-size: 13px;
    color: #95a5a6;
    margin-top: 40px;
    text-align: right;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
}

.cookie-table td {
    padding: 12px;
    font-size: 14px;
    color: #34495e;
    border-bottom: 1px solid #ecf0f1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text-block {
        transform: translateX(0);
    }

    .narrative-container,
    .trust-container,
    .approach-container,
    .story-container,
    .contact-container {
        flex-direction: column;
    }

    .narrative-left,
    .trust-image-right,
    .approach-image,
    .story-image,
    .contact-image-section {
        flex: 1;
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

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

    .thanks-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-image-wrapper {
        position: static;
        width: 100%;
        height: 400px;
    }

    .hero-text-block {
        margin-top: 40px;
    }

    .hero-text-block h2 {
        font-size: 36px;
    }

    .services-header-offset {
        transform: translateX(0);
    }

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

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

    .testimonial {
        max-width: 100%;
    }

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