* {
    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-color: #ffffff;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2d7a4f;
}

.nav-main {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

.nav-main a:hover {
    color: #2d7a4f;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8faf9;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #245d3d;
}

.hero-image {
    flex: 1;
    background-color: #e8f3ed;
    overflow: hidden;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
}

.intro-left {
    flex: 1;
    background-color: #d4e8df;
}

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

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.services-preview {
    background-color: #fafbfa;
    padding: 90px 60px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 70px;
}

.service-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

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

.service-image {
    flex: 1;
    background-color: #dce9e3;
}

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

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

.service-info h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    color: #2d7a4f;
    font-weight: 700;
}

.cta-section {
    background-color: #2d7a4f;
    padding: 80px 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: #e8f3ed;
}

.form-section {
    display: flex;
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
}

.form-container {
    flex: 1;
}

.form-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-header p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-image {
    flex: 1;
    background-color: #dce9e3;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 50px 60px;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2d7a4f;
}

.footer-column p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #2d7a4f;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: #2d7a4f;
    padding: 80px 60px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #e8f3ed;
}

.about-mission {
    display: flex;
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
}

.mission-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.mission-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.mission-image {
    flex: 1;
    background-color: #d4e8df;
}

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

.values-section {
    background-color: #fafbfa;
    padding: 90px 60px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    color: #2d7a4f;
    margin-bottom: 14px;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
}

.approach-image {
    flex: 1;
    background-color: #d4e8df;
}

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.services-detailed {
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.service-detail {
    display: flex;
    gap: 60px;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 22px;
    font-weight: 700;
}

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

.service-pricing {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e8f3ed;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 12px;
}

.price-value {
    font-size: 26px;
    color: #2d7a4f;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #d4e8df;
}

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

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

.services-cta-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 19px;
    color: #666;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #245d3d;
}

.contact-info-section {
    display: flex;
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 60px;
    gap: 70px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #2d7a4f;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    background-color: #d4e8df;
}

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

.contact-message {
    background-color: #f8faf9;
    padding: 80px 60px;
    text-align: center;
}

.message-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.message-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 60px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #245d3d;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 60px;
}

.legal-content h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d7a4f;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 17px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2d7a4f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #245d3d;
}