:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.logo:hover {
    color: var(--secondary-color);
}

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

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: currentColor;
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-light);
}

.philosophy {
    background-color: var(--background-light);
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

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

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

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

.process-step {
    flex: 1 1 calc(25% - 23px);
    background-color: var(--background-light);
    padding: 30px 25px;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

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

.benefits {
    background-color: var(--background-light);
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.benefits-text {
    flex: 1 1 500px;
}

.benefits-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.benefits-text p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

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

.benefits-visual {
    flex: 1 1 300px;
    text-align: center;
}

.benefits-visual svg {
    max-width: 400px;
    margin: 0 auto;
}

.testimonials {
    background-color: var(--background-light);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.industry-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.industry-item h3 {
    margin-bottom: 12px;
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.insights-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--background-light);
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.insight-card h3 {
    margin-bottom: 15px;
}

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

.faq {
    background-color: var(--background-light);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    background-color: white;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-final,
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

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

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

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 22px;
}

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

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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: 20px;
}

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h2 {
    margin-bottom: 25px;
    text-align: left;
}

.cookie-option {
    margin-bottom: 25px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-option p {
    margin-top: 8px;
    margin-left: 24px;
    color: var(--text-light);
    font-size: 14px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-buttons .btn {
    flex: 1;
}

.content-section {
    padding: 80px 0;
}

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

.content-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 15px;
}

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

.approach {
    background-color: var(--background-light);
}

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

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

.team-intro {
    max-width: 800px;
    margin: 30px auto 50px;
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--background-light);
    padding: 35px 30px;
    border-radius: 8px;
}

.team-member h3 {
    margin-bottom: 8px;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

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

.milestones {
    background-color: var(--background-light);
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
    text-align: left;
}

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

.why-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.why-item h3 {
    margin-bottom: 15px;
}

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

.achievements {
    background-color: var(--background-light);
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.achievement-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.achievement-item h3 {
    margin-bottom: 15px;
}

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

.services-list {
    padding: 60px 0 80px;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--background-light);
}

.service-info {
    flex: 1 1 500px;
}

.service-detail h2 {
    text-align: left;
    margin-bottom: 15px;
    font-size: 28px;
}

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

.service-price {
    flex-shrink: 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-includes h3 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 22px;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-benefits {
    background-color: var(--background-light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-item h3 {
    margin-bottom: 15px;
}

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

.process-overview {
    background-color: var(--background-light);
}

.step-block {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.step-marker {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.step-block h3 {
    margin-bottom: 12px;
    text-align: left;
}

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

.service-comparison {
    background-color: var(--background-light);
}

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

.comparison-content > p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

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

.scenario {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.scenario h3 {
    margin-bottom: 15px;
    text-align: left;
}

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

.contact-info {
    padding: 60px 0 80px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

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

.contact-block h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-address {
    font-size: 18px;
    line-height: 1.8;
}

.contact-link {
    font-size: 18px;
    font-weight: 600;
}

.contact-note {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 14px;
}

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

.info-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-card h3 {
    margin-bottom: 15px;
    text-align: left;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.company-info {
    background-color: var(--background-light);
    padding: 60px 0;
}

.company-description {
    max-width: 900px;
    margin: 30px auto 0;
}

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

.contact-faq {
    padding: 60px 0;
}

.expectations {
    background-color: var(--background-light);
    padding: 60px 0;
}

.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.expectation-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.expectation-item h3 {
    margin-bottom: 15px;
    text-align: left;
}

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

.contact-cta {
    padding: 60px 0;
    text-align: center;
}

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

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    line-height: 1.7;
}

.highlight-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.thank-you-hero {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thank-you-message {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.next-steps {
    background-color: var(--background-light);
    padding: 60px 0;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-card .step-number {
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
}

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

.meanwhile {
    padding: 60px 0;
}

.meanwhile-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.meanwhile-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--background-light);
    padding: 40px 35px;
    border-radius: 8px;
    text-align: center;
}

.meanwhile-card h3 {
    margin-bottom: 15px;
}

.meanwhile-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-reminder {
    background-color: var(--background-light);
    padding: 60px 0;
}

.reminder-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-email {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.contact-email a {
    color: var(--secondary-color);
}

.legal-content {
    padding: 60px 0 80px;
}

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

.legal-text h2 {
    text-align: left;
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    text-align: left;
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.legal-text ul {
    margin: 20px 0 20px 25px;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 71px;
        left: -100%;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    section h2 {
        font-size: 30px;
    }

    .service-card,
    .testimonial,
    .insight-card,
    .team-member,
    .achievement-item,
    .step-card {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }

    .industry-item,
    .value-card,
    .why-item,
    .benefit-item,
    .scenario,
    .expectation-item,
    .meanwhile-card {
        flex: 1 1 100%;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        gap: 30px;
    }

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

    .service-price {
        font-size: 32px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        width: auto;
    }
}

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

    .page-hero h1 {
        font-size: 32px;
    }

    section h2 {
        font-size: 26px;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .btn {
        width: 100%;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .modal-buttons {
        flex-direction: column;
    }
}