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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.hidden {
    display: none;
}

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

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

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

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

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

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

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

.nav-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 400px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.hero-image {
    flex: 1;
    min-width: 400px;
    background-color: #dfe6e9;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.btn-select {
    display: inline-block;
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-preview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0 0 25px 0;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 20px 15px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 15px 20px;
    display: block;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.split-image-left {
    flex: 1;
    min-width: 400px;
    background-color: #dfe6e9;
}

.split-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text-right {
    flex: 1;
    min-width: 400px;
    padding: 60px;
    background-color: #ffffff;
}

.split-text-right h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.cta-inline {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-inline .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-inline .btn-primary:hover {
    background-color: #ecf0f1;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.approach-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    color: #555;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
}

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

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

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

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

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

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

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

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

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

.services-detail {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

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

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-price-detail {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

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

.services-cta {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

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

    .hero-content {
        padding: 50px 30px;
        min-width: 100%;
    }

    .hero-image {
        min-width: 100%;
        height: 400px;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

    .split-image-left,
    .split-text-right {
        min-width: 100%;
    }

    .split-text-right {
        padding: 40px 30px;
    }

    .form-container {
        padding: 30px 20px;
    }

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

    .service-detail-image,
    .service-detail-content {
        min-width: 100%;
    }
}