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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #6c757d;
    padding: 3px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

.split-hero {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.split-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #495057;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.section-split {
    display: flex;
    align-items: stretch;
}

.section-split.reverse {
    flex-direction: row-reverse;
}

.content-half {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-half {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-grid {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 42px;
    color: var(--primary-color);
}

.testimonials-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: var(--bg-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.detail-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
    border-radius: 8px;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--text-light);
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: var(--text-light);
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: var(--text-light);
}

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

.about-intro {
    padding: 80px 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.services-page-header {
    padding: 80px 0 40px;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #495057;
    line-height: 1.8;
}

.selected-service-display {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display p {
    margin: 0;
    color: #0c5460;
    font-weight: 600;
}

@media (max-width: 768px) {
    .split-hero,
    .section-split,
    .contact-split,
    .footer-content {
        flex-direction: column;
    }

    .split-left,
    .content-half {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
