* {
    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-full {
    max-width: 100%;
    padding: 0;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

.cta-primary {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

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

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

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

.split-content {
    flex: 1;
}

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

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.split-image-wide {
    flex: 1.2;
}

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

.split-content-compact {
    flex: 0.8;
    padding: 60px;
    background: #f8f9fa;
}

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

.service-list {
    margin: 30px 0;
}

.service-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

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

.service-item p {
    color: #7f8c8d;
}

.link-arrow {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #764ba2;
}

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

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    color: #7f8c8d;
}

.featured-work {
    padding: 100px 0;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #667eea;
    margin: 30px 0;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

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

.values-list {
    list-style: none;
    margin: 30px 0;
}

.values-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-intro p {
    color: #7f8c8d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    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: #667eea;
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #764ba2;
}

.final-cta {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 16px;
}

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

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

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

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-info p {
    color: #7f8c8d;
    line-height: 1.6;
}

.approach-section {
    padding: 100px 0;
}

.approach-points {
    margin-top: 30px;
}

.point {
    margin-bottom: 32px;
}

.point h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #667eea;
}

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

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

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

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

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
}

.pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

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

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.btn-service {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #764ba2;
}

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

.contact-info {
    margin: 40px 0;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #667eea;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-note {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note a {
    color: #667eea;
    font-weight: 600;
}

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

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 18px;
}

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
}

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

.faq-item p {
    color: #7f8c8d;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.thanks-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 16px;
}

.thanks-service {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.btn-primary {
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #764ba2;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.thanks-info {
    text-align: left;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.thanks-info ol {
    padding-left: 20px;
}

.thanks-info li {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 0 100px;
}

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

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #34495e;
}

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

.legal-text ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

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

    .hero-left {
        min-height: 400px;
    }

    .hero-right {
        min-height: 300px;
    }

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

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

    .split-content-compact {
        padding: 40px 20px;
    }

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

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

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

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

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