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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0052a3;
}

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

.intro-offset {
    flex: 1.2;
    padding-left: 40px;
}

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

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

.intro-visual {
    flex: 0.8;
    background-color: #f0f4f8;
}

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

.challenge-section {
    padding: 80px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.challenge-container h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
}

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

.challenge-item {
    flex: 1;
    padding: 32px;
    background-color: #2c2c2c;
}

.challenge-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0066cc;
}

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

.solution-split {
    display: flex;
    min-height: 500px;
}

.solution-image {
    flex: 1;
    background-color: #e8f0f7;
}

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

.solution-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #0066cc;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.services-overview {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.services-stacked {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #f0f4f8;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 20px;
}

.trust-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.trust-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-container p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #f5f5f5;
}

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

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li,
.footer-col ol li {
    margin-bottom: 8px;
}

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

.footer-col ul li a:hover,
.footer-col ol li a:hover {
    color: #0066cc;
}

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.ref-link {
    color: #0066cc;
    text-decoration: none;
    margin-right: 6px;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.contact-info {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 60px;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    padding: 24px;
    background-color: #f8f9fa;
}

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

.info-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    max-width: 800px;
}

.about-hero p {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 700px;
}

.about-content {
    padding: 80px 60px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-list {
    padding: 80px 60px;
}

.services-list h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.service-item {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: #f8f9fa;
}

.service-item h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 20px;
}