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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2c5aa0;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2d3748;
}

.ad-label {
    padding: 0.4rem 0.8rem;
    background-color: #fef3e8;
    color: #c05621;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.hero-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3182ce;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3182ce;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.intro-text p {
    font-size: 1.2rem;
    color: #4a5568;
}

.value-split {
    display: flex;
    min-height: 500px;
}

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

.value-image {
    flex: 1;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.value-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #1a202c;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4a5568;
}

.price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3182ce;
}

.cta-center {
    text-align: center;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #e8f4f8;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    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: #3182ce;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #cbd5e0;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #f7fafc;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #4a5568;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.service-pricing {
    margin-top: 2rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #718096;
    font-size: 0.95rem;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c5aa0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e7ff;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2c5aa0;
}

.cta-section .cta-primary:hover {
    background-color: #f7fafc;
}

.about-intro {
    padding: 3rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-item p {
    color: #4a5568;
}

.experience-section {
    padding: 5rem 2rem;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.experience-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.approach-section {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.contact-page {
    padding: 3rem 2rem;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
}

.info-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.map-section {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.map-section p {
    font-size: 1.1rem;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.thanks-note {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3182ce;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3182ce;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.legal-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-container a {
    color: #3182ce;
    text-decoration: none;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .service-detail,
    .about-container,
    .approach-container {
        flex-direction: column;
    }

    .hero-content,
    .value-content {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}