* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 80px 80px 100px;
    background-color: #fafafa;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #0a0a0a;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.cta-primary {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 6px;
}

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

.intro-section {
    display: flex;
    padding: 100px 80px;
    align-items: center;
    gap: 80px;
}

.intro-left {
    flex: 1;
    background-color: #f0f0f0;
}

.intro-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    color: #0a0a0a;
    letter-spacing: -0.8px;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.value-props {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 90px 100px;
}

.value-props h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.8px;
}

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

.prop-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 35px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.prop-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.prop-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.services-preview {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
    background-color: #f5f5f5;
}

.services-content {
    flex: 1.2;
}

.services-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.8px;
}

.services-content > p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 45px;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item {
    padding: 28px;
    background-color: #ffffff;
    border-left: 4px solid #0066cc;
}

.highlight-item h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.highlight-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.highlight-item .price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.services-image {
    flex: 0.8;
    background-color: #e0e0e0;
}

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

.cta-secondary {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 6px;
}

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

.testimonial-section {
    padding: 90px 100px;
    background-color: #ffffff;
}

.testimonial-wrapper {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 5px solid #0066cc;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.65;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 20px;
}

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

.form-section {
    display: flex;
    padding: 90px 80px;
    gap: 60px;
    align-items: stretch;
}

.form-container {
    flex: 1;
    padding: 50px;
    background-color: #fafafa;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.6px;
}

.form-container > p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.cta-submit {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 6px;
    margin-top: 10px;
}

.cta-submit:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.form-image {
    flex: 0.8;
    background-color: #e5e5e5;
}

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

.final-cta {
    padding: 80px 100px;
    text-align: center;
    background-color: #f0f0f0;
}

.final-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}

.final-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: #0052a3;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.about-hero {
    padding: 100px 100px 60px 100px;
    background-color: #fafafa;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0a0a0a;
    letter-spacing: -1.2px;
    max-width: 900px;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    max-width: 750px;
}

.methodology-split {
    display: flex;
    padding: 90px 80px;
    gap: 70px;
    align-items: center;
}

.method-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.method-content {
    flex: 1;
}

.method-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.7px;
}

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

.process-section {
    padding: 90px 100px;
    background-color: #f5f5f5;
}

.process-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.8px;
}

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

.process-step {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 35px;
    background-color: #ffffff;
    border-top: 4px solid #0066cc;
}

.process-step h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.process-step p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}

.philosophy-section {
    display: flex;
    padding: 90px 80px;
    gap: 70px;
    align-items: center;
}

.philosophy-content {
    flex: 1.2;
}

.philosophy-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.7px;
}

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

.philosophy-image {
    flex: 0.8;
    background-color: #e5e5e5;
}

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

.difference-section {
    padding: 90px 100px;
    background-color: #fafafa;
}

.difference-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.8px;
}

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

.diff-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.diff-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.diff-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}

.cta-about {
    padding: 80px 100px;
    text-align: center;
    background-color: #0a0a0a;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}

.cta-about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-hero {
    padding: 80px 100px;
    text-align: center;
    background-color: #fafafa;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.services-hero p {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

.services-main {
    padding: 40px 0;
}

.service-detailed {
    display: flex;
    padding: 80px 80px;
    gap: 70px;
    align-items: center;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
    background-color: #fafafa;
}

.service-info {
    flex: 1.2;
}

.service-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.7px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.service-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-info ul li {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 10px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 25px;
    background-color: #f5f5f5;
    border-left: 4px solid #0066cc;
    margin-top: 20px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-visual {
    flex: 0.8;
    background-color: #e5e5e5;
}

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

.services-cta {
    padding: 80px 100px;
    text-align: center;
    background-color: #0a0a0a;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}

.services-cta p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.contact-hero {
    padding: 80px 100px 40px 100px;
    background-color: #fafafa;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.contact-hero p {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
}

.contact-main {
    display: flex;
    padding: 80px 80px;
    gap: 70px;
    align-items: center;
}

.contact-info-card {
    flex: 1;
    padding: 50px;
    background-color: #f5f5f5;
}

.contact-info-card h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.7px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0066cc;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.info-item .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.contact-image-section {
    flex: 1;
    background-color: #e5e5e5;
}

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

.consultation-info {
    padding: 90px 100px;
    background-color: #ffffff;
}

.consultation-info h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.7px;
}

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

.consult-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background-color: #fafafa;
    border-top: 4px solid #0066cc;
}

.consult-step h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.consult-step p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}

.contact-cta {
    padding: 80px 100px;
    text-align: center;
    background-color: #f5f5f5;
}

.contact-cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}

.contact-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-hero {
    padding: 100px 100px;
    background-color: #fafafa;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.2px;
    text-align: center;
}

.thanks-content > p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.confirmation-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: -0.6px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}

.check-email {
    text-align: center;
    padding: 40px;
    background-color: #fff9e6;
    border: 2px solid #ffcc00;
}

.check-email p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.thanks-resources {
    padding: 80px 100px;
    background-color: #ffffff;
}

.thanks-resources h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.7px;
}

.resource-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.resource-card {
    flex: 1;
    max-width: 380px;
    padding: 35px;
    background-color: #fafafa;
    border-top: 4px solid #0066cc;
}

.resource-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 20px;
}

.resource-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.legal-page {
    padding: 80px 120px 100px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 10px;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .services-preview,
    .form-section,
    .methodology-split,
    .philosophy-section,
    .service-detailed,
    .contact-main {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .main-nav {
        padding: 20px 40px;
    }

    .hero-content {
        padding: 60px 40px;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .resource-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 20px;
    }

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

    .intro-section,
    .services-preview,
    .process-section,
    .philosophy-section,
    .services-main,
    .contact-main {
        padding: 60px 30px;
    }

    .legal-page {
        padding: 60px 30px;
    }

    .props-grid,
    .process-grid,
    .difference-grid,
    .consultation-grid {
        gap: 25px;
    }
}
