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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2d7aa5;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 25px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

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

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

.hero-left {
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
}

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

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.split-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.split-section.reverse {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.split-content,
.split-visual {
    flex: 1;
    padding: 40px;
}

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

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

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-grid {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.btn-secondary {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.services-cta {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.testimonial blockquote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial cite {
    display: block;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.process-list {
    list-style: none;
    margin: 25px 0;
}

.process-list li {
    padding: 15px 0;
    font-size: 18px;
    color: var(--text-light);
}

.process-list strong {
    color: var(--primary-color);
}

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

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

.stat {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

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

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    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: 20px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover {
    background: #229954;
}

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

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

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

.header-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 0;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-details {
    flex: 1;
}

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

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

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-details h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin: 20px 0 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.services-cta-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.cta-box {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.about-intro {
    padding: 80px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.team-approach {
    padding: 80px 0;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1.2;
}

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

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

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.experience-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.experience-list {
    margin: 25px 0;
    padding-left: 25px;
}

.experience-list li {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.stats-about {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.methodology-section {
    padding: 80px 0;
}

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

.methodology-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.method-step {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

.method-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

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

.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

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

.contact-details > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.note {
    font-size: 15px;
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

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

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 111, 0.9);
    color: white;
    padding: 20px;
}

.faq-contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-contact h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.selected-service p {
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

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

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 5px;
}

.contact-reminder p {
    color: var(--text-light);
}

.contact-reminder a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.resources-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.resources-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 35px 0 18px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--secondary-color);
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 25px;
}

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 30px;
    }

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

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

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

    .service-card.featured {
        transform: scale(1);
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

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

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

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