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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb8;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

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

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

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

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    flex-direction: column;
}

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

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    flex-direction: column;
}

.value-left {
    flex: 1;
}

.value-left img {
    border-radius: 8px;
}

.value-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    flex-direction: column;
}

.approach-content {
    flex: 1.2;
}

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

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.approach-image {
    flex: 0.8;
}

.approach-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 40px;
    padding: 0 30px;
}

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

.services-subtext {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 100%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    background: var(--bg-light);
    flex-direction: column;
}

.testimonial-content {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
}

blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.testimonial-image {
    flex: 1;
}

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

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

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    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: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

.footer-column {
    flex: 1 1 200px;
}

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

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 30px;
    text-align: center;
}

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

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    flex-direction: column;
}

.about-image {
    flex: 1;
}

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

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

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

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

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

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

.value-item {
    flex: 1 1 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.expertise-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    flex-direction: column;
}

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

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

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

.expertise-image {
    flex: 1;
}

.expertise-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 30px;
    background: var(--bg-light);
}

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

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 220px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 30px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

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

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

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    flex-direction: column;
}

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

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

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

.service-detail-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-features {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
    list-style: disc;
}

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

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.services-comparison {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 60px 30px;
    background: var(--bg-light);
}

.services-comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-item {
    padding: 25px;
    background: white;
    border-left: 4px solid var(--accent-color);
}

.guide-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    flex-direction: column;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-image {
    flex: 1;
}

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

.location-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.response-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.response-card {
    flex: 1 1 300px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

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

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

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

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

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

.legal-update {
    margin-top: 50px;
    font-style: italic;
    opacity: 0.7;
}

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

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

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

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #229954);
    color: white;
    padding: 100px 30px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.service-confirmation {
    font-size: 18px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

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

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

.step-item {
    flex: 1 1 250px;
    text-align: center;
}

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

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.preparation-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

.preparation-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.preparation-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.preparation-list {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 25px;
}

.preparation-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
    list-style: disc;
}

.preparation-note {
    font-style: italic;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
}

.contact-reminder {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 30px;
    background: var(--bg-light);
    text-align: center;
    border-radius: 8px;
}

.contact-reminder h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-reminder p {
    font-size: 17px;
    color: var(--text-light);
}

.back-home {
    text-align: center;
    margin: 60px auto 80px;
}

.btn-home {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .value-proposition {
        flex-direction: row;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonial-split {
        flex-direction: row;
    }

    .about-split {
        flex-direction: row;
    }

    .expertise-split {
        flex-direction: row;
    }

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

    .contact-split {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}