:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9bc7;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-gray: #f4f4f4;
    --medium-gray: #e0e0e0;
    --text-color: #333;
    --white: #ffffff;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

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

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

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    text-align: center;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background-color: #218838;
}

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

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

.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: var(--white);
}

.intro-block {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 70px 20px;
    background-color: var(--light-gray);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-item {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: var(--white);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.problem-item p {
    color: #666;
}

.solution-reveal {
    padding: 90px 20px;
    background-color: var(--white);
}

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

.label-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.solution-content > p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.point {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.point-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    min-width: 60px;
}

.point-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.point-text p {
    color: #666;
}

.cta-inline {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-preview {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.service-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-bottom-color: var(--primary-color);
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

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

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-visual {
    min-width: 100px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    display: block;
}

.step-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-info p {
    color: #666;
    font-size: 1.05rem;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
}

.form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.contact-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(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    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 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 80px 20px;
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.main-footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
    display: block;
}

.sticky-cta-button:hover {
    transform: scale(1.05);
    color: var(--white);
}

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

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

.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 70px 20px;
}

.services-detailed.alt-bg {
    background-color: var(--light-gray);
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-content {
    flex: 1 1 500px;
}

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
}

.service-description p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-description h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

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

.service-pricing-info {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-weight: 600;
    color: var(--dark-color);
}

.price-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: #777;
}

.service-detail-image {
    flex: 1 1 400px;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-services {
    padding: 70px 20px;
    background-color: var(--primary-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

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

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.about-intro {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-story h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-story p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-values {
    padding: 70px 20px;
    background-color: var(--light-gray);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    margin-top: 50px;
}

.value-item {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.about-stats {
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 1.1rem;
}

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

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-role {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

.about-approach {
    padding: 70px 20px;
    background-color: var(--light-gray);
}

.about-approach h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-cta {
    padding: 70px 20px;
    background-color: var(--primary-color);
}

.contact-section {
    padding: 70px 20px;
    background-color: var(--white);
}

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

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

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
}

.contact-note h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-note p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-form-wrapper {
    flex: 1 1 500px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-description {
    color: #666;
    margin-bottom: 30px;
}

.contact-faq {
    padding: 70px 20px;
    background-color: var(--light-gray);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

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

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

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.next-steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.thanks-contact-info {
    color: #666;
}

.thanks-contact-info p {
    margin-bottom: 8px;
}

.thanks-contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.legal-intro {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

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

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

.legal-content p {
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--medium-gray);
}

.legal-nav a {
    background-color: var(--light-gray);
    padding: 12px 25px;
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.legal-nav a:hover {
    background-color: var(--medium-gray);
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu li a {
        padding: 15px 20px;
    }

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

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

    .intro-content h2,
    .solution-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

    .step-visual {
        margin: 0 auto;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .stats-wrapper {
        flex-direction: column;
    }

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

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

    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

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

    .page-header h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
