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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c9;
    --accent-color: #f39c12;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --background-dark: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 48px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

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

.intro-section {
    padding: 100px 32px;
    background-color: var(--background-white);
}

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

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.stats-section {
    padding: 80px 32px;
    background-color: var(--background-light);
}

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

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.services-preview {
    padding: 100px 32px;
    background-color: var(--background-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark-text);
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: var(--light-text);
}

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

.service-item {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: var(--background-light);
    padding: 48px;
    border-radius: 12px;
}

.service-item.reverse {
    flex-direction: row-reverse;
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
}

.service-item img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.btn-select-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.testimonials-section {
    padding: 100px 32px;
    background: linear-gradient(to bottom, var(--background-dark), #1a252f);
    color: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 64px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-color);
}

.form-section {
    padding: 100px 32px;
    background-color: var(--background-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-intro {
    color: var(--light-text);
    margin-bottom: 32px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

.disclaimer-section {
    padding: 60px 32px;
    background-color: #fffbf0;
    border-top: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #7f6003;
    line-height: 1.7;
}

.main-footer {
    background-color: var(--background-dark);
    color: white;
    padding: 60px 32px 24px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 37, 47, 0.98);
    color: white;
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.about-story {
    padding: 100px 32px;
    background-color: var(--background-white);
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.story-content img {
    width: 50%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.story-text {
    flex: 1;
}

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

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

.values-section {
    padding: 100px 32px;
    background-color: var(--background-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: var(--dark-text);
}

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

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

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

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

.approach-section {
    padding: 100px 32px;
    background-color: var(--background-white);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

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

.approach-content img {
    width: 45%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.team-section {
    padding: 100px 32px;
    background-color: var(--background-light);
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--dark-text);
}

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

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

.team-section img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.cta-about {
    padding: 100px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-detail-card {
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-detail-content {
    padding: 48px;
}

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

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

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--dark-text);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: var(--light-text);
    line-height: 1.6;
}

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

.service-pricing-box {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 24px;
}

.process-section {
    padding: 100px 32px;
    background-color: var(--background-light);
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: var(--dark-text);
}

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

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

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

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

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

.services-cta {
    padding: 100px 32px;
    background-color: var(--background-white);
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

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

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

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

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

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

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

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

.contact-note {
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 8px;
    margin-top: 32px;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--border-color);
}

.faq-section {
    padding: 100px 32px;
    background-color: var(--background-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: var(--dark-text);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.map-placeholder {
    padding: 80px 32px;
    background-color: var(--background-white);
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--dark-text);
}

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

.thanks-service-info {
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 16px;
    color: var(--dark-text);
}

.thanks-next-steps {
    margin-bottom: 48px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.steps-list {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

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

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

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

.btn-back-home,
.btn-view-services {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

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

.btn-back-home:hover {
    transform: translateY(-1px);
}

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

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

.legal-page {
    padding: 60px 32px 100px;
    background-color: var(--background-white);
}

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

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

.legal-updated {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

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

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--dark-text);
}

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

.legal-section ul {
    margin: 16px 0 16px 32px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.no-link {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }

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

    .service-item img {
        width: 100%;
    }

    .story-content,
    .approach-content {
        flex-direction: column;
    }

    .story-content img,
    .approach-content img {
        width: 100%;
    }

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

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

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-text h2,
    .section-header-center h2 {
        font-size: 32px;
    }

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

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

    .values-grid,
    .process-steps {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }
}