* {
    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 */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 300px;
}

.cookie-content a {
    color: #7fb069;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #7fb069;
    color: #ffffff;
}

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

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

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #7fb069;
}

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    border: 1px solid #95a5a6;
    padding: 4px 10px;
    border-radius: 3px;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 60px;
}

.hero-content {
    max-width: 600px;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-right {
    background-color: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #7fb069;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #6a9757;
}

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

.cta-secondary:hover {
    background-color: #7fb069;
    color: #ffffff;
}

/* Intro Section */
.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

/* Services Split */
.services-split {
    background-color: #f8f9fa;
}

.split-row {
    display: flex;
    min-height: 500px;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.split-row:nth-child(even) .split-content {
    background-color: #f8f9fa;
}

.split-image {
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

.service-card {
    max-width: 500px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #7fb069;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #7fb069;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #6a9757;
}

/* Form Section */
.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #546e7a;
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #7fb069;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* About Preview */
.about-preview {
    background-color: #f8f9fa;
}

.about-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-preview p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #546e7a;
    line-height: 1.8;
}

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

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

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

.footer-column h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-column a:hover {
    color: #7fb069;
}

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

.footer-bottom p {
    margin-bottom: 10px;
}

/* Thanks Page Specific */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #7fb069;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #546e7a;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-split,
    .split-row {
        flex-direction: column;
    }

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

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

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

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

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

/* Contact Page Specific */
.contact-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info {
    flex: 1;
    padding: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #7fb069;
}

.info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

/* Services Page */
.services-header {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-item {
    display: flex;
    margin-bottom: 50px;
    gap: 40px;
}

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

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

/* About Page */
.about-header {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-section p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
    line-height: 1.8;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #546e7a;
    line-height: 1.7;
}