* {
    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: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    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: 300px;
}

.cookie-content a {
    color: #5dade2;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

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

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-image {
    flex: 1;
    background: #d5e8d5;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.intro-image {
    flex: 1;
    background: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.services-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.services-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.service-row {
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    flex-grow: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.875rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.form-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-text {
    flex: 1;
}

.form-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.form-text p {
    font-size: 1.05rem;
    color: #34495e;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.selected-service {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c5f2d;
    display: none;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.values-text {
    flex: 1;
    padding: 4rem;
    background: #2c5f2d;
    color: #ffffff;
}

.values-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.values-text ul {
    list-style: none;
}

.values-text li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.values-text li:last-child {
    border-bottom: none;
}

.values-image {
    flex: 1;
    background: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.disclaimer-content {
    background: #fff3cd;
    padding: 2rem;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

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

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

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

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-service {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f2d;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background: #2c5f2d;
    color: #ffffff;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #a8d5a8;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background: #e8f5e9;
}

.about-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.about-hero p {
    font-size: 1.2rem;
    color: #34495e;
    max-width: 800px;
}

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

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1rem;
}

.services-list {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.services-list h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f2d;
}

.service-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-item h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-item p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.legal-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f2d;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #34495e;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card,
    .values-split,
    .contact-split,
    .form-container {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .service-info,
    .values-text,
    .contact-info {
        padding: 2rem;
    }

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

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

    .header-container {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
}