* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    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: 250px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background: #d35400;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie-alt:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.main-nav {
    background: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-right {
    overflow: hidden;
}

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

.cta-primary,
.cta-primary-large,
.cta-service {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-primary-large:hover,
.cta-service:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary-large {
    font-size: 18px;
    padding: 18px 45px;
}

.intro-reverse-split {
    display: flex;
    min-height: 70vh;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    overflow: hidden;
}

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

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: var(--bg-white);
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-highlight {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 80px 20px;
}

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

.problem-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.problem-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-split {
    display: flex;
    min-height: 65vh;
}

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

.insight-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: var(--bg-light);
}

.insight-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.insight-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-right {
    overflow: hidden;
}

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

.testimonial-block {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.services-showcase {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 19px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.selected {
    border: 3px solid var(--accent-color);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: var(--secondary-color);
}

.service-card.selected .service-select {
    background: var(--accent-color);
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.main-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background: var(--bg-white);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.trust-builder {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-final {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.cta-final-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.cta-final-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

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

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d35400;
    transform: scale(1.05);
}

.page-hero {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: var(--bg-white);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
}

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

.philosophy-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-approach {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.team-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about,
.cta-services {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-about-content,
.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-about-content p,
.cta-services-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.services-detail-split {
    display: flex;
    min-height: 65vh;
}

.services-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: var(--bg-white);
}

.services-detail-split:nth-child(even) .service-detail-right {
    background: var(--bg-light);
}

.service-detail-right h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-detail-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-pricing {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.process-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: var(--bg-light);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--accent-color);
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-map {
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-expectation {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.expectation-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.expectation-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-cta {
    padding: 100px 20px;
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.contact-cta-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-service-info {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next-steps {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.next-steps-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.steps-timeline {
    position: relative;
}

.timeline-item {
    padding-left: 80px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: 60px;
    background: var(--border-color);
}

.timeline-item:last-child .timeline-marker::before {
    display: none;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-browse {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.browse-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.browse-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.browse-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.browse-link {
    padding: 12px 30px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.browse-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.legal-content {
    padding: 60px 20px;
    background: var(--bg-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 20px 0 20px 30px;
}

.legal-text li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: #d35400;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-split,
    .intro-reverse-split,
    .insight-split,
    .about-split,
    .services-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .services-detail-split.reverse {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-text,
    .insight-left,
    .about-text,
    .service-detail-right,
    .contact-info {
        padding: 40px 25px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

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

    .process-step {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }
}