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

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-medium: #f3f4f6;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --error-red: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: var(--bg-medium);
    color: var(--text-medium);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--bg-white);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background: var(--dark-blue);
}

.intro-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
}

.content-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.intro-image {
    flex: 1;
    background: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-section {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.philosophy-image {
    flex: 1;
    background: var(--bg-white);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 19px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 16px 24px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 16px 24px 24px;
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: var(--dark-blue);
}

.contact-form-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-btn {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--dark-blue);
}

.trust-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 60px;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

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

.trust-item {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.testimonial {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-medium);
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--bg-medium);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 60px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-medium);
}

.disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 32px 60px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--bg-medium);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: var(--dark-blue);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.cookie-actions a {
    color: var(--light-blue);
    font-size: 14px;
    text-decoration: none;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

.page-hero {
    background: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
}

.story-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background: var(--bg-light);
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.approach-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.approach-container h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

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

.approach-item {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-philosophy {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
}

.philosophy-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-left {
    flex: 1;
    background: var(--bg-light);
}

.philosophy-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-right {
    flex: 1;
}

.philosophy-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.philosophy-right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.philosophy-right ul {
    list-style: none;
    margin: 24px 0;
}

.philosophy-right ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.philosophy-right ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 20px;
}

.values-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.values-list {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.service-detail {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    margin: 16px 0 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.service-price {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 80px 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content .cta-primary {
    background: var(--bg-white);
    color: var(--primary-blue);
}

.cta-content .cta-primary:hover {
    background: var(--bg-light);
}

.contact-page-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-note {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-confirmation {
    background: var(--light-blue);
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: var(--text-dark);
}

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

.btn-primary {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--dark-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.thanks-note {
    margin-top: 32px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-note p {
    font-size: 14px;
    color: var(--text-medium);
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

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

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .content-wrapper,
    .philosophy-container,
    .story-layout,
    .philosophy-split,
    .contact-layout,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .hero-left {
        padding: 60px 32px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .intro-section,
    .philosophy-container,
    .services-preview,
    .about-story,
    .team-philosophy,
    .services-detailed,
    .contact-page-section {
        padding: 60px 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 0 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .page-hero {
        padding: 60px 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}