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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', '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: 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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.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 #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 18px;
}

.services-overview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 20px;
    display: block;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.process-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.process-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.process-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    background-color: #f8f9fa;
}

.form-intro {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.form-container {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #5d4037;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero-split .hero-content {
    background-color: #2c3e50;
    color: #ffffff;
}

.page-hero-split .hero-content h1 {
    color: #ffffff;
}

.page-hero-split .hero-content p {
    color: #ecf0f1;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 18px;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

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

.team-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 18px;
}

.team-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technology-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.technology-section h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.tech-text {
    flex: 1;
}

.tech-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 18px;
}

.tech-visual {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.tech-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: #2c3e50;
    border-radius: 8px;
    text-align: center;
}

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

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

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #2c3e50;
}

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

.page-header {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 18px;
}

.service-features {
    margin: 24px 0;
}

.service-features ul {
    list-style-position: inside;
    color: #546e7a;
}

.service-features ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
}

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

.price-unit {
    font-size: 14px;
    color: #7f8c8d;
}

.service-detail-content .select-service {
    margin: 0;
    align-self: flex-start;
}

.services-cta {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.contact-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #546e7a;
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.location-details h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.location-text {
    flex: 1;
}

.location-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 18px;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    background-color: #e8e8e8;
    padding: 80px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.thanks-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-content {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.thanks-message {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid #4caf50;
}

.thanks-message p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 12px;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.next-steps ul {
    list-style-position: inside;
}

.next-steps ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

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

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

.legal-page h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split,
    .team-split,
    .process-split,
    .form-split,
    .contact-layout,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .about-text,
    .team-content,
    .process-content,
    .form-intro,
    .form-container,
    .contact-info,
    .service-detail-content {
        padding: 40px;
    }

    .hero-visual,
    .intro-visual,
    .about-visual,
    .team-visual,
    .process-visual,
    .contact-visual,
    .service-detail-visual {
        min-height: 400px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .tech-split,
    .location-split {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }
}

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

    .services-header h2,
    .testimonials h2,
    .values-section h2,
    .technology-section h2 {
        font-size: 32px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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