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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-section {
    margin-top: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2a3a4a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 24px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.intro-section {
    padding: 80px 24px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.image-text-section {
    padding: 90px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: #1f2937;
    color: #ffffff;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: #ffffff;
}

.bg-dark p {
    color: #d1d5db;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.text-block {
    flex: 1;
    min-width: 320px;
}

.text-block h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.link-cta {
    display: inline-block;
    margin-top: 16px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #2563eb;
    transition: color 0.2s, border-color 0.2s;
}

.link-cta:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

.image-block {
    flex: 1;
    min-width: 320px;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e5e7eb;
    object-fit: cover;
}

.services-preview {
    padding: 90px 0;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f3f4f6;
}

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

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

.service-card .price {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    margin: 0 20px 20px;
}

.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
    min-width: 60px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
}

.form-section {
    padding: 90px 0;
    background-color: #fafafa;
}

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

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

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

.testimonial-section {
    padding: 80px 0;
}

.testimonial-section h3 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.testimonial {
    margin-bottom: 36px;
    padding: 28px;
    background-color: #ffffff;
    border-left: 4px solid #3b82f6;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial .author {
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2563eb;
}

.btn-reject {
    background-color: #4b5563;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #374151;
}

.page-hero {
    padding: 80px 24px 60px;
    background-color: #f9fafb;
    text-align: center;
}

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

.page-hero p {
    font-size: 19px;
    color: #555;
}

.services-full {
    padding: 60px 0;
}

.service-full-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 320px;
}

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

.service-details {
    flex: 1;
    min-width: 320px;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.price-box {
    margin-top: 24px;
    padding: 16px 20px;
    background-color: #eff6ff;
    border-radius: 6px;
    display: inline-block;
}

.price-label {
    font-size: 15px;
    color: #555;
    margin-right: 8px;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
}

.cta-section {
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #555;
}

.btn-cta {
    display: inline-block;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 600;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #1d4ed8;
}

.about-intro {
    padding: 80px 24px;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-values {
    padding: 80px 0;
}

.about-values h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.about-team {
    padding: 80px 0;
}

.about-team h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.team-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.team-text {
    flex: 1;
    min-width: 320px;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    min-width: 320px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e5e7eb;
    object-fit: cover;
}

.about-workshop {
    padding: 80px 24px;
}

.about-workshop h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 600;
}

.about-workshop p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-approach {
    padding: 80px 0;
}

.about-approach h2 {
    font-size: 38px;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 600;
}

.about-approach > p {
    max-width: 900px;
    margin: 0 auto 24px;
    font-size: 17px;
    line-height: 1.7;
    padding: 0 24px;
}

.approach-image {
    margin-top: 50px;
}

.approach-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 320px;
}

.contact-details h3 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 600;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2563eb;
}

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

.contact-image {
    flex: 1;
    min-width: 320px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e5e7eb;
    object-fit: cover;
}

.contact-map {
    padding: 60px 24px;
}

.contact-map h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-map p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info-legal {
    padding: 60px 24px;
}

.contact-info-legal h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-legal p {
    font-size: 16px;
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 24px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.thanks-content .btn-cta {
    margin-top: 20px;
}

.legal-page {
    padding: 60px 24px;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page p,
.legal-page ul,
.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #2563eb;
}

.legal-page a:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .intro-section h2 {
        font-size: 28px;
    }

    .split-layout {
        gap: 40px;
    }

    .service-full-item {
        gap: 40px;
    }

    .service-full-item.reverse {
        flex-direction: column;
    }

    .footer-columns {
        gap: 32px;
    }
}