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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #1a73e8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    display: block;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }
}

.hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background: #f7fafc;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a73e8;
    transition: all 0.3s;
    cursor: pointer;
}

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

.intro-section {
    background: #f8f9fa;
    padding: 80px 30px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.values-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    gap: 60px;
}

.values-image {
    flex: 1;
    background: #e2e8f0;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-content {
    flex: 1;
}

.values-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.values-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

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

.values-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #2d3748;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.expertise-section {
    padding: 80px 30px;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

.expertise-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #cbd5e0;
}

.expertise-card h4 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #1a202c;
}

.expertise-card p {
    padding: 0 20px 20px;
    color: #4a5568;
    line-height: 1.6;
}

.process-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    gap: 60px;
    background: #f8f9fa;
}

.process-content {
    flex: 1;
}

.process-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-number {
    background: #1a73e8;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.testimonials-section {
    padding: 80px 30px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

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

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

.services-form-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

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

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

.service-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.service-option {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #1a73e8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.1);
}

.service-option.selected {
    border-color: #1a73e8;
    background: #ebf5ff;
}

.service-option h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 12px;
    display: block;
}

.service-option p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1557b0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.selected-service-display {
    background: #ebf5ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-secondary {
    padding: 12px 24px;
    background: #fff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 12px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a73e8;
    color: #fff;
}

.change-service {
    margin-top: 12px;
}

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

.final-cta-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.main-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-column p,
.footer-column a {
    color: #cbd5e0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #90cdf4;
}

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

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

.btn-accept {
    background: #1a73e8;
    color: #fff;
}

.btn-accept:hover {
    background: #1557b0;
}

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

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.service-detail-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 30px;
    gap: 60px;
}

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

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

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

.price-highlight {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
    display: block;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 24px 0 16px;
    color: #1a202c;
}

.service-benefits {
    list-style: none;
    margin-bottom: 28px;
}

.service-benefits li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #2d3748;
}

.service-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

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

.pricing-info {
    background: #f8f9fa;
    padding: 60px 30px;
    margin-top: 60px;
}

.pricing-info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-info-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.pricing-info-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    gap: 60px;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.philosophy-section {
    padding: 60px 30px;
    background: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.philosophy-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.philosophy-item p {
    color: #4a5568;
    line-height: 1.7;
}

.expertise-area {
    padding: 60px 30px;
}

.expertise-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-text {
    flex: 1;
}

.expertise-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.expertise-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.expertise-list-detailed {
    list-style: none;
}

.expertise-list-detailed li {
    padding: 12px 0;
    color: #2d3748;
    line-height: 1.7;
}

.expertise-list-detailed strong {
    color: #1a202c;
}

.expertise-image-col {
    flex: 1;
}

.expertise-image-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.numbers-section {
    padding: 60px 30px;
    background: #1a202c;
    color: #fff;
}

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

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.number-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.number-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 12px;
}

.number-label {
    display: block;
    font-size: 16px;
    color: #cbd5e0;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-statement {
    padding: 60px 30px;
    background: #f8f9fa;
}

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

.values-statement-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
    text-align: center;
}

.values-statement-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    gap: 60px;
}

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

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.contact-note p {
    color: #2d3748;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 16px;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    color: #1a202c;
    font-weight: 600;
}

.location-info {
    padding: 60px 30px;
    background: #f8f9fa;
}

.location-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.location-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-method {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.location-method h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a202c;
}

.location-method p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 60px 30px;
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-cta-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 28px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-lead {
    font-size: 20px;
    color: #1a73e8;
    margin-bottom: 32px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.next-steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps-list li {
    counter-increment: step-counter;
    padding: 12px 0 12px 50px;
    position: relative;
    color: #2d3748;
    line-height: 1.7;
}

.next-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    background: #1a73e8;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content a {
    color: #1a73e8;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #718096;
}

@media (max-width: 992px) {
    .hero-split,
    .values-split,
    .process-split,
    .service-detail-split,
    .about-intro-split,
    .expertise-content-split,
    .approach-split,
    .contact-content-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }
}

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

    .testimonials-container {
        flex-direction: column;
    }

    .service-selection {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}