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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.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;
    align-items: stretch;
}

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

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #e8f5e9;
}

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

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

.cta-primary:hover {
    background-color: #229954;
    cursor: pointer;
}

.intro-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

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

.intro-text-wide h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.split-content-section {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    align-items: center;
}

.split-image-left {
    flex: 1;
    background-color: #e8f5e9;
}

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

.split-text-right {
    flex: 1;
    padding: 60px;
}

.split-text-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.services-section {
    background-color: #f8f9fa;
    padding: 80px 60px;
}

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

.services-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #5a6c7d;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 24px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #229954;
}

.service-card.selected {
    border: 3px solid #27ae60;
}

.form-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #7f8c8d;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.values-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 60px;
}

.values-content {
    max-width: 1400px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
}

.values-split {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 280px;
}

.value-block h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #27ae60;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-disclaimer strong {
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2c2c2c;
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.approach-section {
    background-color: #f8f9fa;
    padding: 80px 60px;
}

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

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.approach-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.experience-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.experience-split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.experience-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.team-section {
    background-color: #f8f9fa;
    padding: 80px 60px;
}

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

.team-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.commitment-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 60px;
}

.commitment-container {
    text-align: center;
}

.commitment-container h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.commitment-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-detail-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 60px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail-content .price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.service-detail-content ul {
    margin-top: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

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

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

.cta-services-section {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-services-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-services-content .cta-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.cta-services-content .cta-primary:hover {
    background-color: #f8f9fa;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 60px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8f5e9;
    margin-bottom: 24px;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

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

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

.contact-approach-section {
    background-color: #f8f9fa;
    padding: 80px 60px;
}

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

.approach-container h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8f5e9;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 60px;
}

.faq-container h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.thanks-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.thanks-details {
    margin-bottom: 32px;
}

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

.thanks-details ul {
    padding-left: 20px;
}

.thanks-details ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-confirmation p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-confirmation strong {
    color: #27ae60;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.thanks-image {
    flex: 1;
    background-color: #e8f5e9;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.next-steps-section {
    background-color: #f8f9fa;
    padding: 60px;
}

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

.next-steps-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #5a6c7d;
}

.next-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-links a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.next-links a:hover {
    color: #229954;
    text-decoration: underline;
}

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

.legal-container {
    background-color: #ffffff;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #27ae60;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.legal-container a {
    color: #27ae60;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-content-section,
    .form-container,
    .about-split,
    .experience-split-reverse,
    .service-detail-block,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .values-split,
    .approach-steps {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .intro-text-wide h2,
    .approach-content h2,
    .team-content h2,
    .services-header h2,
    .cta-services-content h2,
    .faq-container h2 {
        font-size: 32px;
    }

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

    .main-nav {
        gap: 16px;
        font-size: 14px;
    }

    .hero-left,
    .split-text-right,
    .form-left-content,
    .about-text,
    .experience-text,
    .service-detail-content,
    .contact-details {
        padding: 40px 30px;
    }

    .services-section,
    .approach-section,
    .team-section {
        padding: 60px 30px;
    }
}