* {
    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: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-primary {
    display: flex;
    gap: 32px;
}

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

.nav-primary a:hover {
    color: #0066cc;
}

.cta-button-header {
    background: #0066cc;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button-header:hover {
    background: #0052a3;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 60px 6%;
    background: #fafafa;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
}

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

.btn-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    display: inline-block;
    background: #333;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #555;
}

.intro-section {
    display: flex;
    align-items: center;
    padding: 80px 6%;
    gap: 60px;
}

.intro-left {
    flex: 1;
    background: #e8e8e8;
}

.intro-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 6%;
    background: #f9f9f9;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    max-width: 350px;
    flex: 1;
    min-width: 300px;
}

.service-image {
    background: #ddd;
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 20px 16px 20px;
}

.price {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
    margin: 0 20px 20px 20px;
}

.cta-inline {
    text-align: center;
}

.process-section {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: center;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #666;
}

.process-image {
    flex: 1;
    background: #e0e0e0;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-section {
    padding: 80px 6%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background: #2a2a2a;
    padding: 32px;
    border-radius: 8px;
    max-width: 380px;
    flex: 1;
    min-width: 280px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.author {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.form-section {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    background: #f5f5f5;
    align-items: flex-start;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

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

.btn-submit {
    background: #0066cc;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.form-image {
    flex: 1;
    background: #ddd;
}

.form-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-main {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 6% 30px 6%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.disclaimer {
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 20px 6%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-reject:hover {
    background: #777;
}

.about-hero {
    padding: 80px 6%;
    background: #f9f9f9;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 1;
    background: #ddd;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-values {
    padding: 80px 6%;
    background: #fafafa;
}

.team-values h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    max-width: 340px;
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #666;
}

.team-section {
    padding: 80px 6%;
}

.team-intro {
    margin-bottom: 40px;
    text-align: center;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.team-image-full {
    background: #e0e0e0;
}

.team-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.stats-section {
    padding: 80px 6%;
    background: #0066cc;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #e0e0e0;
}

.cta-section-about {
    padding: 80px 6%;
    text-align: center;
    background: #f5f5f5;
}

.cta-section-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section-about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.services-header {
    padding: 80px 6%;
    text-align: center;
    background: #fafafa;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 19px;
    color: #666;
}

.services-full {
    padding: 60px 6%;
}

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

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

.service-detail-image {
    flex: 1;
    background: #e0e0e0;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 15px;
    color: #666;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.process-info {
    padding: 80px 6%;
    background: #f9f9f9;
}

.process-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-boxes {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    max-width: 340px;
    flex: 1;
    min-width: 280px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 16px;
    color: #666;
}

.cta-section-services {
    padding: 80px 6%;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-section-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section-services p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 32px;
}

.contact-header {
    padding: 80px 6%;
    text-align: center;
    background: #fafafa;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 19px;
    color: #666;
}

.contact-content {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.contact-map {
    flex: 1;
    background: #e0e0e0;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.info-section {
    padding: 60px 6%;
    background: #f9f9f9;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-section p {
    font-size: 17px;
    color: #666;
    margin-bottom: 16px;
}

.info-section a {
    color: #0066cc;
    text-decoration: underline;
}

.info-section a:hover {
    color: #0052a3;
}

.thanks-section {
    padding: 120px 6%;
    text-align: center;
    min-height: 500px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
}

#service-confirmation {
    font-weight: 600;
    color: #0066cc;
}

.legal-content {
    padding: 80px 6%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

.legal-content em {
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 16px;
    }

    .nav-primary {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-content {
        padding-right: 0;
    }

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

    .intro-section {
        flex-direction: column;
    }

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

    .process-section {
        flex-direction: column;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .form-section {
        flex-direction: column;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

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

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