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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #64748b;
    padding: 0.3rem 0.8rem;
    background-color: #f1f5f9;
    border-radius: 4px;
    margin-right: 1rem;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    flex: 1;
}

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

.hero-left p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 100%;
    background-color: #e2e8f0;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.services-showcase {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1e293b;
}

.service-card p {
    padding: 0 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #f1f5f9;
    color: #2563eb;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #2563eb;
}

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

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

.why-us-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.why-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-image {
    flex: 1;
}

.why-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.3rem;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 2px solid #cbd5e1;
}

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

.page-header {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

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

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

.services-detail {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1rem;
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.price-box {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 0.95rem;
    color: #475569;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1d4ed8;
}

.process-section {
    background-color: #f8fafc;
    padding: 5rem 2rem;
}

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: #475569;
    font-size: 0.95rem;
}

.about-intro {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

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

.about-text p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 280px;
}

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

.value-item p {
    color: #475569;
    font-size: 1rem;
}

.expertise-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.expertise-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.expertise-image {
    flex: 1;
}

.expertise-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.expertise-text p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1rem;
}

.tech-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.experience-section {
    background-color: #f8fafc;
    padding: 5rem 2rem;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #475569;
}

.experience-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.experience-item {
    flex: 1 1 calc(50% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 280px;
}

.experience-item h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.experience-item p {
    color: #475569;
    font-size: 1rem;
}

.cta-about {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #eff6ff;
    border-radius: 12px;
}

.cta-about h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: #475569;
    font-size: 0.95rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.location-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 3rem 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

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

.location-section p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1rem;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.thanks-service {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-next {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.thanks-next li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    color: #475569;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-content,
    .why-content,
    .service-detail-item,
    .about-split,
    .expertise-content,
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-left h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

@media (max-width: 640px) {
    .service-card,
    .value-item,
    .experience-item,
    .process-step {
        flex: 1 1 100%;
    }

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