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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 4px;
}

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

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

.nav-main a:hover {
    color: #3498db;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

.btn-large {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #2980b9;
}

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

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

.content-section {
    padding: 80px 0;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.split-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.feature-card {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    min-width: 280px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.feature-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a252f;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2980b9;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    text-align: center;
}

.testimonial-wrapper cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
    text-align: center;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
    text-align: center;
}

.form-wrapper p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe4ea;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.btn-primary {
    padding: 10px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.page-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.about-story {
    padding: 80px 0;
}

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

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

.value-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

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

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-section {
    padding: 80px 0;
}

.team-intro {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8ecef;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.stats-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #bdc3c7;
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-box p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    color: #5a6c7d;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

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

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

.contact-content {
    padding: 80px 0;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

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

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

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

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

.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a252f;
}

.map-placeholder {
    height: 400px;
    background-color: #e8ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 18px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.service-info {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

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

    .hero-text p {
        font-size: 16px;
    }

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

    .nav-main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title-center {
        font-size: 32px;
    }
}