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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

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

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

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

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

.hero-offset {
    display: flex;
    padding: 80px 5% 60px;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
}

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

.hero-text-block p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
}

.hero-image-offset {
    flex: 1;
    transform: translateY(-30px);
}

.hero-image-offset img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.intro-diagonal {
    padding: 70px 5%;
    background-color: #ffffff;
}

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

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

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

.insight-asymmetric {
    display: flex;
    gap: 50px;
    padding: 60px 5%;
    background-color: #f8f9fa;
    align-items: center;
}

.insight-left {
    flex: 0.9;
}

.insight-left img {
    width: 100%;
    border-radius: 8px;
}

.insight-right {
    flex: 1.1;
}

.insight-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.trust-block {
    padding: 70px 5%;
    background-color: #ffffff;
}

.trust-block h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card .author {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.services-preview {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-large {
    flex: 1 1 calc(60% - 25px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-medium {
    flex: 1 1 calc(50% - 25px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-small {
    flex: 1 1 calc(40% - 25px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services-asymmetric h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-asymmetric p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 28px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline a {
    color: #0066cc;
    text-decoration: underline;
    font-size: 17px;
    font-weight: 500;
}

.benefits-stacked {
    padding: 70px 5%;
    background-color: #ffffff;
}

.benefits-stacked h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-offset {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-shifted {
    margin-left: 60px;
}

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

.benefit-item p {
    font-size: 17px;
    color: #555;
}

.cta-section-offset {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 60px 0;
}

.cta-content {
    transform: skewY(2deg);
    text-align: center;
}

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

.cta-content p {
    font-size: 19px;
    margin-bottom: 30px;
}

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

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

.approach-section {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

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

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-block {
    flex: 1 1 calc(50% - 30px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offset-top {
    transform: translateY(20px);
}

.number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.approach-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-block p {
    font-size: 16px;
    color: #555;
}

.form-section {
    padding: 70px 5%;
    background-color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-notice {
    padding: 15px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    border-radius: 4px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

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

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

.submit-btn {
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.final-cta {
    padding: 70px 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.final-cta p {
    font-size: 19px;
    margin-bottom: 30px;
}

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

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 5% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #0066cc;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 5%;
    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;
    color: #333;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

.cookie-reject:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.page-header-offset {
    padding: 80px 5% 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-header-offset h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.about-story {
    display: flex;
    gap: 50px;
    padding: 60px 5%;
    background-color: #ffffff;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

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

.story-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.mission-block {
    padding: 70px 5%;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.mission-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.values-section {
    padding: 70px 5%;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 30px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.offset-value {
    transform: translateY(20px);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.approach-detail {
    padding: 70px 5%;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

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

.approach-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.team-section {
    padding: 70px 5%;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

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

.team-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.cta-about {
    padding: 70px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.services-detailed {
    padding: 40px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offset-card {
    margin-left: 40px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.service-header h2 {
    font-size: 28px;
    color: #1a1a1a;
}

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

.service-body p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.service-body h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #1a1a1a;
}

.service-body ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-body li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.service-cta {
    padding: 70px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.contact-info-section {
    display: flex;
    gap: 50px;
    padding: 60px 5%;
    background-color: #ffffff;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-image {
    flex: 0.8;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.contact-approach {
    padding: 70px 5%;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-approach p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.location-section {
    padding: 70px 5%;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

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

.location-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    gap: 40px;
}

.location-item {
    flex: 1;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.location-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.faq-contact {
    padding: 70px 5%;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

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

.faq-item p {
    font-size: 16px;
    color: #555;
}

.cta-contact {
    padding: 70px 5%;
    background-color: #ffffff;
    text-align: center;
}

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

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

.thanks-section {
    display: flex;
    gap: 50px;
    padding: 80px 5%;
    background-color: #f8f9fa;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content > p {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 17px;
    color: #333;
    padding: 15px 20px;
    background-color: #e8f4fd;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.thanks-image {
    flex: 0.8;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
}

.additional-info {
    padding: 70px 5%;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.additional-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.info-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.info-links a {
    color: #0066cc;
    text-decoration: underline;
    font-size: 17px;
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 50px 5%;
    }

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

    .hero-image-offset {
        transform: translateY(0);
    }

    .insight-asymmetric {
        flex-direction: column;
    }

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

    .services-asymmetric {
        flex-direction: column;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .approach-blocks {
        flex-direction: column;
    }

    .approach-block {
        flex: 1 1 100%;
    }

    .offset-top {
        transform: translateY(0);
    }

    .about-story {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .offset-value {
        transform: translateY(0);
    }

    .offset-card {
        margin-left: 0;
    }

    .benefit-shifted {
        margin-left: 0;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .location-details {
        flex-direction: column;
    }

    .thanks-section {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .info-links {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}