* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

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

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.hero-right {
    flex: 1;
    background-color: #ecf0f1;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.services-showcase {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 450px;
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    flex: 0 0 250px;
    display: flex;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5d6d7e;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: auto;
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.approach-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

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

.submit-btn {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    background-color: #fef5e7;
    padding: 3rem 2rem;
    border-top: 2px solid #f39c12;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5d4037;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.thanks-info {
    background-color: #e8f8f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-header {
    background-color: #3498db;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #5d6d7e;
}

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

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5d6d7e;
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info-box h3 {
    margin-top: 0;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .section-title {
        font-size: 2rem;
    }

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