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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-links {
    display: none;
}

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

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

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-left {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-right {
    min-height: 400px;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #e74c3c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.cta-text {
    color: #e74c3c;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.cta-text:hover {
    color: #c0392b;
}

.cta-large {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Split Container */
.split-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    padding: 3rem 1.5rem;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.split-visual {
    min-height: 350px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Intro Section */
.intro-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

/* Values Block */
.values-block {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    background: #ffffff;
    padding: 3rem 0;
}

.service-mini {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-mini:last-of-type {
    border-bottom: none;
}

.service-mini h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* Testimonial Section */
.testimonial-section {
    background: #34495e;
    padding: 4rem 1.5rem;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    color: #ecf0f1;
    font-size: 1rem;
    font-style: normal;
}

.testimonial-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

/* Form Section */
.form-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.contact-form {
    margin-top: 2rem;
}

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

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

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

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

.form-visual {
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.final-cta p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2.5rem;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1100;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c0392b;
}

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

.cookie-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.cookie-link {
    color: #ecf0f1;
    text-decoration: underline;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    margin-top: 0.5rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services List */
.services-list {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-image {
    min-height: 300px;
}

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

.service-details {
    padding: 2.5rem 2rem;
}

.service-details h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    color: #555;
    margin-bottom: 0.5rem;
}

.services-intro {
    background: #f8f9fa;
    padding: 3rem 0;
}

/* Service Form Section */
.service-form-section {
    background: #ffffff;
    padding: 4rem 1.5rem;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container p {
    color: #555;
    margin-bottom: 2rem;
}

/* About Page Styles */
.about-intro {
    background: #ffffff;
    padding: 3rem 0;
}

.philosophy-section {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.philosophy-header p {
    color: #555;
    font-size: 1.1rem;
}

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

.philosophy-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.philosophy-visual {
    min-height: 300px;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-text {
    padding: 2.5rem 2rem;
}

.philosophy-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.philosophy-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Team Section */
.team-section {
    background: #ffffff;
    padding: 4rem 1.5rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 4rem 1.5rem;
}

.stats-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stats-wrapper h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ecf0f1;
    font-size: 1.1rem;
}

.cta-about {
    background: #2c3e50;
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    background: #ffffff;
    padding: 3rem 0;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: #e74c3c;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.map-placeholder {
    background: rgba(44, 62, 80, 0.9);
    padding: 2rem;
    margin-top: -4px;
    color: #ffffff;
    text-align: center;
}

.map-placeholder p {
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-additional {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

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

.additional-wrapper h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.cta-contact {
    background: #2c3e50;
    padding: 4rem 1.5rem;
    text-align: center;
}

/* Thanks Page */
.thanks-section {
    background: #f8f9fa;
    padding: 5rem 1.5rem;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.thanks-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-info {
    color: #e74c3c;
    font-weight: 600;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-additional {
    background: #ffffff;
    padding: 4rem 1.5rem;
}

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

.additional-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.reading-suggestions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.suggestion-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.suggestion-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.suggestion-card p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.suggestion-card a {
    color: #e74c3c;
    font-weight: 600;
}

.suggestion-card a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    background: #f8f9fa;
    padding: 3rem 1.5rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-intro {
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li,
.legal-section ol li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    list-style: disc;
}

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

.legal-section a {
    color: #e74c3c;
}

.legal-section a:hover {
    text-decoration: underline;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.gdpr-table tbody tr:hover,
.cookies-table tbody tr:hover {
    background: #f8f9fa;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

    .hero-left,
    .hero-right {
        flex: 1;
    }

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

    .split-container {
        flex-direction: row;
        align-items: center;
    }

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

    .split-text,
    .split-visual {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 2rem);
    }

    .service-card-split {
        flex-direction: row;
    }

    .service-card-split.reverse {
        flex-direction: row-reverse;
    }

    .service-image,
    .service-details {
        flex: 1;
    }

    .philosophy-item {
        flex-direction: row;
    }

    .philosophy-item.reverse {
        flex-direction: row-reverse;
    }

    .philosophy-visual,
    .philosophy-text {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-actions {
        flex-direction: row;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .reading-suggestions {
        flex-direction: row;
    }

    .suggestion-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }
}
