* {
    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: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.active {
    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: 300px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #d4af37;
    color: #000;
}

.cookie-btn.accept:hover {
    background-color: #e5c04a;
}

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

.cookie-btn.reject:hover {
    background-color: #333;
}

.main-header {
    background-color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d4af37;
}

.ad-notice {
    font-size: 11px;
    color: #999;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
}

.insight-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.citation {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-image {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.problem-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

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

.split-layout-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
    padding: 100px 40px;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.solution-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

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

.benefits-list li {
    padding: 15px 0;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:before {
    content: "✓ ";
    color: #d4af37;
    font-weight: bold;
    margin-right: 10px;
}

.solution-image {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

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

.services-pricing {
    padding: 100px 40px;
    background-color: #fff;
}

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

.services-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 19px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 340px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #d4af37;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d4af37;
    color: #000;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card > p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.6;
}

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

.service-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    margin-right: 10px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px;
    text-align: center;
}

.service-select-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: #d4af37;
    color: #000;
}

.contact-form-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #d4af37;
    color: #000;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

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

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

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

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

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #d4af37;
    color: #000;
}

.final-cta {
    padding: 120px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #0a0a0a;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4af37;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.references-list {
    font-size: 13px;
}

.references-list li {
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 20px;
    font-style: italic;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #555;
}

.selected-service-info {
    background-color: #d4af37;
    color: #000;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-weight: 600;
}

.back-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: #d4af37;
    color: #000;
}

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

.page-header h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #ccc;
}

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

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #f0f0f0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.about-hero {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

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

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    min-height: 500px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-page-header {
    padding: 80px 40px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.services-page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

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

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

    .contact-page-content,
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .services-header h2 {
        font-size: 36px;
    }

    .form-container {
        padding: 40px 30px;
    }
}