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

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

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

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

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

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

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

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

.hero-split {
    background: #f8f9fa;
}

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.hero-right {
    flex: 1;
    background: #e0e7ef;
}

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

.cta-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.intro-image {
    flex: 1;
    background: #cbd5e0;
}

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

.intro-text {
    flex: 1;
}

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

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

.value-section {
    background: #1a1a1a;
    padding: 100px 40px;
    color: #ffffff;
}

.value-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.value-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #2d2d2d;
    padding: 40px 30px;
    border-left: 4px solid #1a73e8;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e0;
}

.services-preview {
    padding: 100px 40px;
    background: #f8f9fa;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    color: #1a1a1a;
}

.services-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
}

.service-image {
    flex: 1;
    background: #cbd5e0;
}

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

.testimonials-section {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonials-section h2 {
    max-width: 1400px;
    margin: 0 auto 60px;
    font-size: 38px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-left: 5px solid #1a73e8;
}

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

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
}

.cta-section {
    background: #1a73e8;
    padding: 80px 40px;
    color: #ffffff;
}

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

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

.cta-content p {
    font-size: 20px;
    line-height: 1.7;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #e9ecef;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.page-header {
    background: #1a73e8;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.header-content p {
    font-size: 20px;
    line-height: 1.6;
}

.about-story {
    padding: 100px 40px;
    background: #ffffff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background: #cbd5e0;
}

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

.approach-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.approach-blocks {
    display: flex;
    gap: 40px;
}

.approach-block {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.approach-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.approach-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin-bottom: 60px;
}

.expertise-list {
    display: flex;
    gap: 40px;
}

.expertise-item {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-top: 4px solid #1a73e8;
}

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

.expertise-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
}

.values-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

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

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

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

.cta-about,
.cta-services {
    background: #1a73e8;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-about-content,
.cta-services-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-about-content h2,
.cta-services-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
}

.cta-services-content p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 40px;
    background: #ffffff;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-tagline {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
}

.service-detail-image {
    flex: 1;
    background: #cbd5e0;
}

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

.contact-page {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background: #cbd5e0;
    min-height: 400px;
}

.thanks-page {
    padding: 120px 40px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a73e8;
}

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

.thanks-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-info p {
    font-size: 15px;
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content .last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-content,
    .intro-split,
    .service-block,
    .testimonials-layout,
    .footer-content,
    .story-container,
    .approach-blocks,
    .expertise-list,
    .values-container,
    .service-detail-content,
    .contact-container {
        flex-direction: column;
    }

    .service-block.reverse,
    .service-detail.reverse .service-detail-content {
        flex-direction: column;
    }

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

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

    .header-content h1 {
        font-size: 32px;
    }
}