/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

/* Navigation */
.nav-main {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Split Screen */
.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.link-arrow {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 0.8rem;
}

.link-arrow::after {
    content: '→';
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Statement */
.intro-statement {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-statement p {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
}

/* Split Feature Sections */
.split-feature {
    padding: 5rem 2rem;
}

.split-feature:nth-child(even) {
    background: #f8f9fa;
}

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

.split-feature.reverse .split-container {
    flex-direction: row-reverse;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a252f;
}

.split-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.approach-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.approach-card p {
    color: #546e7a;
    line-height: 1.7;
}

/* Testimonial Block */
.testimonial-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.testimonial-block blockquote {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Highlight */
.services-highlight {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-card p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

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

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1a252f;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
    display: block;
}

.btn-sticky:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

/* Page Header */
.page-header {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.page-header p {
    font-size: 1.2rem;
    color: #546e7a;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 2rem;
}

.service-detail-item {
    margin-bottom: 5rem;
}

.service-detail-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

.service-detail-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

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

.service-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.service-duration {
    display: block;
    color: #546e7a;
    font-size: 1rem;
}

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

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

/* Services CTA */
.services-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* About Sections */
.about-intro-split {
    padding: 5rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.story-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.story-section p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-item {
    margin-bottom: 4rem;
}

.approach-item .approach-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-item.reverse .approach-content {
    flex-direction: row-reverse;
}

.approach-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
    flex: 1;
}

.approach-item p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.expertise-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.expertise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.expertise-section p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 2rem;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.contact-card p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

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

.contact-steps {
    max-width: 900px;
    margin: 0 auto;
}

.contact-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.step-content p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
}

.contact-faq {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.faq-item p {
    color: #546e7a;
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 2rem;
    background: #ffffff;
}

.thanks-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.thanks-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    min-width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.timeline-content p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-service-info {
    background: #e8f4f8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.thanks-service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.service-note {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-contact {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-contact > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 2rem;
}

.thanks-contact-info {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-method strong {
    min-width: 120px;
    color: #2c3e50;
}

.contact-method a {
    color: #3498db;
    font-weight: 600;
}

.thanks-resources {
    padding: 5rem 2rem;
    background: #ffffff;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.resource-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.resource-card p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

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

.legal-content p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

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

.legal-content strong {
    color: #2c3e50;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .cookie-content {
        align-items: center;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f8f9fa;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-container,
    .service-detail-content,
    .approach-item .approach-content {
        flex-direction: column;
    }

    .split-feature.reverse .split-container,
    .service-detail-item.reverse .service-detail-content,
    .approach-item.reverse .approach-content {
        flex-direction: column;
    }

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

    .approach-grid,
    .services-grid,
    .values-grid {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .contact-step {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-width: 45%;
    }
}