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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #5a6c7d;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.intro-section {
    background-color: #f8f9fa;
    padding: 90px 40px;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 0 0 450px;
    background-color: #dee2e6;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 40px;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 400px;
    background-color: #e9ecef;
    height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.select-service {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

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

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

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

.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 90px 40px;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 45px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 8px;
}

.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 {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 50px 40px;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    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: 30px;
}

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

.cookie-content a {
    color: #61dafb;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

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

.btn-reject:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

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

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

.page-hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 40px;
}

.about-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.about-image {
    flex: 0 0 450px;
    background-color: #e9ecef;
}

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

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.approach-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 40px;
}

.approach-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.approach-image {
    flex: 0 0 450px;
    background-color: #e9ecef;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

.story-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px 90px;
}

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

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

.service-detail-image {
    flex: 0 0 500px;
    background-color: #e9ecef;
}

.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: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #495057;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.contact-detail {
    margin-bottom: 30px;
}

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

.location-section {
    background-color: #f8f9fa;
    padding: 70px 40px;
}

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

.location-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.location-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-main {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #495057;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #495057;
    padding-left: 30px;
    position: relative;
}

.thanks-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.legal-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

    .main-nav {
        gap: 20px;
    }

    .hero-content,
    .intro-content,
    .about-split,
    .approach-split,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even),
    .service-detail.reverse {
        flex-direction: column;
    }

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

    .testimonials-grid,
    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}