* {
    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.6;
    color: #222;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-nav {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d32f2f;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d32f2f;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.insight-section {
    padding: 5rem 2rem;
    background: white;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.insight-image {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.services-pricing-section {
    padding: 5rem 2rem;
    background: white;
}

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

.services-pricing-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-visual {
    flex: 0 0 300px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-details p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.select-service-btn {
    padding: 0.9rem 2rem;
    background: #333;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.trust-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: white;
}

.trust-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-elements {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ccc;
}

.form-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4CAF50;
}

.selected-service-display p {
    margin: 0;
    color: #2e7d32;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 1.1rem 2.5rem;
    background: #d32f2f;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff9e6;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #d32f2f;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .service-visual {
        flex: 1;
        width: 100%;
    }

    .trust-elements {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #d32f2f;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 1rem;
}

.back-link:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.content-page {
    padding: 3rem 2rem;
    background: white;
    min-height: 70vh;
}

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

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

.content-container h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.content-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-page {
    padding: 4rem 2rem;
    background: white;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d32f2f;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.contact-visual {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}