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

:root {
    --primary-color: #1976d2;
    --primary-dark: #115293;
    --secondary-color: #ff6f00;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

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;
}

html {
    scroll-behavior: smooth;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M0 0h1200v800H0z"/%3E%3Cpath fill="%23ffffff" fill-opacity="0.08" d="M0 200 Q300 100 600 200 T1200 200 V0H0z"/%3E%3C/svg%3E');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.intro-block {
    padding: 6rem 0;
    background: var(--bg-white);
    text-align: center;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.trust-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.trust-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.trust-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.services-showcase {
    padding: 6rem 0;
    background: var(--bg-white);
}

.section-title-centered {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.service-item-alt {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.service-image-box {
    flex: 1 1 300px;
}

.service-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.service-content {
    flex: 1 1 400px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.testimonial-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.9;
}

.process-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.cta-mid-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-mid-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-mid-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.benefits-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.benefits-list li {
    padding: 1.5rem 0 1.5rem 3rem;
    font-size: 1.2rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-outline-light {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid white;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

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

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-secondary {
    background: #666;
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-intro,
.values-section,
.team-section,
.story-section,
.commitment-section {
    padding: 5rem 0;
}

.about-intro {
    background: var(--bg-white);
}

.about-intro h2,
.values-section h2,
.team-section h2,
.story-section h2,
.commitment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-intro p,
.team-section p,
.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.team-section {
    background: var(--bg-light);
}

.story-section {
    background: var(--bg-white);
}

.commitment-section {
    background: var(--bg-light);
}

.commitment-list {
    list-style: none;
    margin-top: 2rem;
}

.commitment-list li {
    padding: 1rem 0 1rem 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    color: var(--text-light);
}

.commitment-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-section-about {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    margin: 0;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.service-detail-card ul {
    margin-bottom: 2rem;
}

.service-detail-card ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-light);
}

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

.services-cta {
    padding: 5rem 0;
    background: var(--bg-white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-outline-dark {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--text-dark);
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

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

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    line-height: 1.8;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.contact-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 8rem 0;
    background: var(--bg-light);
    min-height: 60vh;
}

.thanks-content {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 3rem auto;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps-list {
    padding-left: 1.5rem;
}

.next-steps-list li {
    padding: 0.8rem 0;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-page {
    padding: 4rem 0;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-page p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin: 1rem 0 2rem 2rem;
}

.legal-page ul li {
    padding: 0.5rem 0;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
        padding: 1rem 0;
    }

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .contact-form {
        padding: 2rem;
    }

    .thanks-content {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title-centered,
    .process-section h2 {
        font-size: 2rem;
    }

    .btn-primary-large,
    .cta-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
