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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --dark-gray: #34495e;
    --success: #27ae60;
}

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

.ad-disclosure {
    background-color: #f39c12;
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

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

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--dark-gray);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.content-split.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    overflow: hidden;
}

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

.content-text {
    flex: 1;
    padding: 70px 60px;
}

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

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.tools-showcase {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 90px 40px;
}

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

.tools-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.tools-grid {
    display: flex;
    gap: 40px;
}

.tool-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 6px;
}

.tool-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.tool-card p {
    font-size: 16px;
    line-height: 1.7;
}

.services-section {
    padding: 90px 40px;
    background-color: var(--light-bg);
}

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

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

.services-intro p {
    font-size: 18px;
    color: var(--gray);
}

.services-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto 70px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: calc(33.333% - 24px);
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
}

.price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.selected-service-display {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 4px;
    font-size: 15px;
}

.submit-btn {
    padding: 16px;
    background-color: var(--success);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.process-split {
    display: flex;
    background-color: var(--white);
}

.process-content {
    flex: 1;
    padding: 80px 60px;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.process-image {
    flex: 1;
    overflow: hidden;
}

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

.trust-section {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 70px 40px;
}

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

.trust-container h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.trust-container p {
    font-size: 17px;
    line-height: 1.8;
}

.trust-container a {
    color: #3498db;
    text-decoration: none;
}

.trust-container a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.references {
    font-size: 13px;
}

.references li {
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1300px;
    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;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

.about-intro-split {
    display: flex;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.expertise-section {
    background-color: var(--light-bg);
    padding: 90px 40px;
}

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

.expertise-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.expertise-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.values-split {
    display: flex;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

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

.values-text {
    flex: 1;
    padding: 80px 60px;
}

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

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 20px;
}

.team-philosophy {
    padding: 80px 40px;
    background-color: var(--white);
}

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

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

.philosophy-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    background-color: var(--secondary-color);
    padding: 80px 40px;
    text-align: center;
}

.cta-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-container p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--white);
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.services-detail-section {
    padding: 60px 40px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-price-block {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 4px;
    font-size: 18px;
    margin-bottom: 25px;
}

.service-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.additional-services {
    background-color: var(--light-bg);
    padding: 80px 40px;
}

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

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

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

.additional-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 6px;
}

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

.additional-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.process-overview {
    padding: 80px 40px;
    background-color: var(--white);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.contact-section {
    padding: 60px 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.email-display {
    color: var(--text-color);
    font-weight: 600;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-cta {
    background-color: var(--light-bg);
    padding: 70px 40px;
    text-align: center;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: var(--gray);
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    display: none;
}

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

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.next-step {
    flex: 1;
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
}

.next-step strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.next-step p {
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.legal-page {
    padding: 60px 40px 80px;
}

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

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

.last-updated {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .process-split,
    .about-intro-split,
    .values-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .content-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .service-card {
        width: calc(50% - 18px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .content-text,
    .about-text,
    .values-text,
    .process-content {
        padding: 40px 30px;
    }

    .service-card {
        width: 100%;
    }

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