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

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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #1a472a;
}

.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 580px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
}

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

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #1a472a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.intro-section {
    padding: 90px 30px;
    background: #f8faf9;
}

.intro-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 21px;
    line-height: 1.8;
    color: #34495e;
}

.services-preview {
    padding: 100px 30px;
    background: #ffffff;
}

.section-header-alt {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-alt h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a472a;
    font-weight: 700;
}

.section-header-alt p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid-stacked {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-large {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-image-container {
    flex: 1;
    position: relative;
    background: #e8ebe9;
    min-height: 400px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
    padding: 20px 0;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 700;
}

.service-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 25px;
}

.service-select-btn {
    padding: 14px 32px;
    background: #1a472a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.service-select-btn:hover {
    background: #0f2818;
    transform: translateY(-1px);
}

.benefits-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.benefits-section.dark-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.benefits-content {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.process-section {
    padding: 100px 30px;
    background: #f0f3f2;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a472a;
    font-weight: 700;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.step {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    padding: 35px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a472a;
    opacity: 0.2;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.testimonials-section {
    padding: 100px 30px;
    background: #ffffff;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    padding: 35px;
    background: #f8faf9;
    border-radius: 6px;
    border-left: 4px solid #1a472a;
}

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

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #1a472a;
}

.contact-form-section {
    padding: 100px 30px;
    background: #f0f3f2;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a472a;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 35px;
    color: #6c757d;
}

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

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

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

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

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

.submit-button {
    padding: 16px 40px;
    background: #1a472a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background: #0f2818;
    transform: translateY(-1px);
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content p a {
    color: #4a9d6a;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #1a472a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #0f2818;
}

.cookie-btn.reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-hero {
    padding: 100px 30px 60px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    padding: 100px 30px;
    background: #ffffff;
}

.about-content-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a472a;
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    background: #e8ebe9;
    border-radius: 6px;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 30px;
    background: #f8faf9;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a472a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.expertise-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.expertise-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.expertise-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.expertise-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
}

.expertise-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.approach-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.approach-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.approach-block {
    padding: 35px;
    background: #f8faf9;
    border-radius: 6px;
    border-left: 5px solid #1a472a;
}

.approach-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a472a;
}

.approach-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.team-philosophy {
    padding: 100px 30px;
    background: #f0f3f2;
}

.philosophy-content {
    max-width: 820px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a472a;
    font-weight: 700;
}

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

.cta-section {
    padding: 90px 30px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 36px;
    color: #1a472a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a472a;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background: #e8ebe9;
    min-height: 380px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-detail-text {
    flex: 1;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.service-detail-text h3 {
    font-size: 22px;
    margin-bottom: 18px;
    margin-top: 10px;
    color: #2c3e50;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-text ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #6c757d;
}

.service-add-ons {
    padding: 100px 30px;
    background: #f8faf9;
}

.service-add-ons h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

.add-ons-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.add-on {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.add-on h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a472a;
}

.add-on p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.services-cta {
    padding: 90px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: #ffffff;
}

.contact-page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a472a;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
}

.contact-note {
    padding: 25px;
    background: #f8faf9;
    border-radius: 6px;
    border-left: 4px solid #1a472a;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.contact-image-block {
    flex: 1;
    background: #e8ebe9;
    min-height: 400px;
    border-radius: 6px;
    overflow: hidden;
}

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

.contact-form-page {
    padding: 80px 30px 100px;
    background: #f0f3f2;
}

.location-section {
    padding: 80px 30px;
    background: #ffffff;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #495057;
}

.service-areas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.area {
    padding: 12px 28px;
    background: #f8faf9;
    border: 1px solid #e0e5e3;
    border-radius: 20px;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.thanks-section {
    padding: 120px 30px;
    background: #ffffff;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #1a472a;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #495057;
}

.thanks-service-info {
    padding: 25px;
    background: #f8faf9;
    border-radius: 6px;
    margin-bottom: 50px;
}

.thanks-service-info p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #6c757d;
}

.thanks-service-info .service-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a472a;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
    padding: 40px;
    background: #f0f3f2;
    border-radius: 6px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a472a;
    text-align: center;
}

.next-steps-list {
    margin-left: 25px;
}

.next-steps-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #495057;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #1a472a;
    border: 2px solid #1a472a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #1a472a;
    color: #ffffff;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a472a;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #495057;
    font-weight: 600;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #6c757d;
}

.legal-content a {
    color: #1a472a;
    text-decoration: underline;
}

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

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

    .contact-page-content {
        flex-direction: column;
    }

    .benefits-list,
    .values-grid,
    .testimonial-grid,
    .add-ons-grid {
        flex-direction: column;
    }

    .expertise-stats {
        gap: 40px;
    }
}