/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

/* Floating Navigation (Asymmetric) */
.nav-floating {
    position: fixed;
    top: 30px;
    right: 40px;
    left: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

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

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
}

.hero-text-offset {
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 25%;
    width: 45%;
    transform: rotate(3deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap img {
    border-radius: 15px;
}

/* Story Section */
.intro-story {
    padding: 100px 40px;
    background: #f8f9fa;
}

.story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 50px;
}

.story-block.offset-left {
    margin-left: 0;
    max-width: 700px;
}

.story-block.offset-right {
    margin-left: auto;
    max-width: 650px;
    text-align: right;
}

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

.story-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
}

.highlight-text {
    font-size: 24px;
    font-weight: 600;
    color: #e74c3c;
    line-height: 1.6;
}

/* Problem Amplify */
.problem-amplify {
    padding: 100px 40px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #fff;
    border-left: 5px solid #e74c3c;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.08);
}

.problem-card.skewed:nth-child(1) {
    transform: rotate(-1deg);
    margin-top: 20px;
}

.problem-card.skewed:nth-child(2) {
    transform: rotate(1deg);
}

.problem-card.skewed:nth-child(3) {
    transform: rotate(-0.5deg);
    margin-top: 30px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Insight Reveal */
.insight-reveal {
    padding: 120px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.insight-image-side {
    flex: 1;
    transform: rotate(-2deg);
}

.insight-image-side img {
    border-radius: 10px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.3);
}

.insight-text-side {
    flex: 1.2;
    color: #ffffff;
}

.insight-text-side h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.insight-text-side p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    padding: 15px 35px;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonial Asymmetric */
.testimonial-asymmetric {
    padding: 100px 40px;
    background: #f8f9fa;
}

.testimonial-layout {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.testimonial-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.testimonial-box.positioned-left {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-2deg);
}

.testimonial-box.positioned-right {
    position: absolute;
    right: 0;
    top: 150px;
    transform: rotate(2deg);
}

.testimonial-box p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 15px;
}

/* Benefits Stacked */
.benefits-stacked {
    padding: 120px 40px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: #2c3e50;
}

.benefits-blocks {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.benefit-item.overlap-effect:nth-child(1) {
    margin-left: -50px;
}

.benefit-item.overlap-effect:nth-child(2) {
    margin-left: 50px;
}

.benefit-item.overlap-effect:nth-child(3) {
    margin-left: 0;
}

.benefit-number {
    font-size: 72px;
    font-weight: 900;
    color: #ecf0f1;
    line-height: 1;
    min-width: 100px;
}

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

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Services Creative */
.services-creative {
    padding: 100px 40px;
    background: #f8f9fa;
}

.section-title-offset {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 60px;
    margin-left: 10%;
    color: #2c3e50;
}

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

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card.angled-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card.angled-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured-service {
    position: relative;
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.service-body {
    flex-grow: 1;
    margin-bottom: 25px;
}

.service-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.btn-service {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Trust Elements */
.trust-elements {
    padding: 80px 40px;
    background: #2c3e50;
    color: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-stat p {
    font-size: 17px;
    max-width: 200px;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper.offset-form {
    margin-left: 15%;
}

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

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    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: #3498db;
}

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

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

/* Urgency Block */
.urgency-block {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.urgency-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #e74c3c;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3498db;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

/* About Page Styles */
.about-hero {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
}

.about-story {
    padding: 100px 40px;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.mission-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.mission-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.mission-statement {
    font-size: 22px;
    line-height: 1.7;
    color: #555;
    font-weight: 500;
}

.values-section {
    padding: 100px 40px;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3498db;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.team-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.team-members {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    margin-bottom: 20px;
}

.member-photo img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-size: 15px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.approach-section {
    padding: 100px 40px;
}

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

.approach-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #555;
}

.approach-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.cta-about {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-about .cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Services Page Styles */
.services-hero {
    padding: 140px 40px 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail-card {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-detail-card.featured-detail {
    border: 3px solid #3498db;
    position: relative;
}

.service-detail-header {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
}

.service-title-block {
    flex: 1;
}

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

.service-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 10px;
}

.service-detail-body {
    padding: 40px;
}

.service-detail-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-body h3:first-child {
    margin-top: 0;
}

.service-detail-body p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-detail-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

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

.comparison-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #dfe6e9;
}

.comparison-row.comparison-header {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 700;
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    font-size: 16px;
}

.comparison-cell:last-child {
    color: #3498db;
    font-weight: 600;
}

.faq-section {
    padding: 80px 40px;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-services {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    text-align: center;
}

.cta-services .cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 40px 60px;
    text-align: center;
    background: #f8f9fa;
}

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

.contact-intro {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

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

.contact-info-block,
.contact-map-block {
    flex: 1;
    min-width: 300px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-item a {
    color: #3498db;
    text-decoration: underline;
}

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

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.map-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-faq h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-contact-item {
    margin-bottom: 35px;
}

.faq-contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-cta {
    padding: 80px 40px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #667eea;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 140px 40px 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-info {
    padding: 20px;
    background: #e8f5e9;
    border-radius: 10px;
    margin-top: 20px;
}

.selected-service {
    font-size: 17px;
    color: #27ae60;
    margin: 0;
}

.thanks-next-steps {
    padding: 80px 40px;
    background: #f8f9fa;
}

.thanks-next-steps h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.next-steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-resources {
    padding: 80px 40px;
}

.thanks-resources h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.resources-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.resource-item {
    margin-bottom: 35px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.resource-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.resource-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.thanks-cta .cta-box {
    background: transparent;
    padding: 0;
}

.thanks-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

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

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background: #2c3e50;
    color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
    font-size: 15px;
}

.cookies-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-floating {
        top: 15px;
        right: 20px;
        left: 20px;
        padding: 12px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 20px 60px;
    }

    .hero-text-offset {
        margin-left: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        transform: rotate(0);
    }

    .story-block.offset-right {
        text-align: left;
        margin-left: 0;
    }

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

    .problem-card.skewed {
        transform: rotate(0) !important;
        margin-top: 0 !important;
    }

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

    .insight-image-side {
        transform: rotate(0);
    }

    .insight-text-side h2 {
        font-size: 36px;
    }

    .testimonial-box.positioned-left,
    .testimonial-box.positioned-right {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: rotate(0);
        margin-bottom: 30px;
    }

    .testimonial-layout {
        min-height: auto;
    }

    .benefits-header h2 {
        font-size: 38px;
    }

    .benefit-item {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .benefit-number {
        font-size: 56px;
    }

    .section-title-offset {
        font-size: 38px;
        margin-left: 0;
    }

    .service-card.angled-card {
        transform: rotate(0) !important;
    }

    .form-wrapper.offset-form {
        margin-left: auto;
    }

    .urgency-content h2 {
        font-size: 36px;
    }

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

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

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

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

    .services-hero h1 {
        font-size: 42px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .thanks-hero h1 {
        font-size: 38px;
    }

    .legal-content h1 {
        font-size: 36px;
    }

    .cookies-table {
        font-size: 13px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}