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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    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);
}

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: #fff3cd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

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

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

.hero-text p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background: #e0e0e0;
}

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #27ae60;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

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

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

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

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-right h2,
.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.content-right p,
.content-left p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.feature-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e0e0e0;
}

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

.feature-card p {
    font-size: 16px;
    margin: 0 24px 24px;
    color: #666;
    line-height: 1.7;
}

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

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.highlight-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.highlight-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.testimonial-section {
    padding: 80px 0;
    background: #34495e;
}

.testimonial {
    text-align: center;
    color: #ffffff;
}

.testimonial p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #ecf0f1;
}

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

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

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

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

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

.expertise-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.expertise-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.expertise-item {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.expertise-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.mission-section {
    padding: 100px 0;
    background: #ffffff;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 6px solid #27ae60;
}

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

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

.cta-section {
    padding: 100px 0;
    background: #27ae60;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #27ae60;
}

.cta-section .btn-primary:hover {
    background: #ecf0f1;
}

.services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

.service-block {
    margin-bottom: 80px;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-pricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    border-left: 4px solid #27ae60;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    display: block;
}

.price-note {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 4px;
}

.service-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-features h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.hours-note {
    font-size: 15px;
    color: #999;
    margin-top: 12px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-areas h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.service-areas p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 100px 0;
    background: #ffffff;
}

.thanks-content {
    text-align: center;
}

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

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

.service-confirmation {
    background: #f0f8f4;
    padding: 16px;
    border-radius: 6px;
    font-weight: 600;
    color: #27ae60;
    margin: 24px 0;
}

.next-steps {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

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

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 17px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

.legal-content ul li {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .split-content,
    .split-content.reverse,
    .service-split,
    .service-block.reverse .service-split,
    .contact-split {
        flex-direction: column;
    }

    .features-grid,
    .expertise-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }
}