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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2869b8;
    --accent-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-gray: #f4f4f4;
    --medium-gray: #ddd;
    --text-color: #333;
    --white: #fff;
    --success-green: #27ae60;
    --error-red: #e74c3c;
}

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

.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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

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

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

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

.nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

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

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

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

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

.intro-visual {
    flex: 0 0 300px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

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

.problem-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.problem-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.problem-item p {
    line-height: 1.6;
}

.trust-section {
    padding: 100px 0;
    background: var(--white);
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.trust-stats {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-stat-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.trust-stat-item strong {
    display: block;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-stat-item span {
    font-size: 16px;
    color: var(--text-color);
}

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

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.service-header h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.5;
}

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

.btn-service {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

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

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 14px;
}

.process-section {
    padding: 100px 0;
    background: var(--white);
}

.centered-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

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

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

.process-arrow {
    font-size: 32px;
    color: var(--primary-color);
    flex: 0 0 auto;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: var(--text-color);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

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

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

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

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

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

.story-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.value-card p {
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: var(--white);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--light-gray);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

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

.member-info p {
    line-height: 1.6;
}

.stats-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stats-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.stat-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.mission-section {
    padding: 100px 0;
    background: var(--white);
}

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

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

.services-detail-section {
    padding: 100px 0;
    background: var(--white);
}

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

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

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    padding: 50px 40px;
    transition: all 0.3s ease;
}

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

.service-detailed-card.featured-detail {
    border: 3px solid var(--accent-color);
    background: linear-gradient(to bottom, rgba(243,156,18,0.05) 0%, var(--white) 100%);
}

.service-detailed-card.premium-card {
    border: 3px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(26,77,143,0.05) 0%, var(--white) 100%);
}

.service-detailed-card.urgent-card {
    border: 3px solid var(--error-red);
    background: linear-gradient(to bottom, rgba(231,76,60,0.05) 0%, var(--white) 100%);
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-detail-header h3 {
    font-size: 28px;
    color: var(--dark-color);
}

.service-detail-price {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

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

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-includes ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

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

.service-ideal {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-service-detail {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.programs-covered {
    padding: 100px 0;
    background: var(--light-gray);
}

.programs-covered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

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

.program-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.program-category ul {
    list-style: none;
}

.program-category ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    line-height: 1.5;
}

.program-category ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

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

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

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

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

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

.contact-detail p {
    line-height: 1.7;
}

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

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

.contact-description {
    flex: 1;
    min-width: 300px;
}

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

.contact-description p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-benefits {
    margin-top: 30px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.contact-benefits h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

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

.location-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.location-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.location-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.location-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-item p {
    line-height: 1.6;
}

.office-hours-detail {
    padding: 80px 0;
    background: var(--white);
}

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

.hours-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.hours-day {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-day.closed {
    opacity: 0.6;
}

.hours-note {
    text-align: center;
    font-style: italic;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.faq-contact {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--success-green);
    border-radius: 50%;
    font-size: 60px;
    line-height: 100px;
    margin: 0 auto 30px;
    font-weight: 700;
}

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

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 0;
    background: var(--white);
}

.thanks-info-box {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-info-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.thanks-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.timeline-marker {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.timeline-content p {
    line-height: 1.6;
}

.thanks-service-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.thanks-service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.thanks-service-info p {
    font-size: 24px;
    font-weight: 600;
}

.thanks-tips {
    padding: 80px 0;
    background: var(--light-gray);
}

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

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

.tip-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.tip-card p {
    line-height: 1.6;
}

.tips-note {
    text-align: center;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-box {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 10px;
}

.contact-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.contact-box > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
}

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

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

.thanks-resources {
    padding: 80px 0;
    background: var(--light-gray);
}

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

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

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

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

.resource-card p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.legal-content {
    padding: 60px 0;
    background: var(--white);
}

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

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

.legal-section h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

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

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-gray);
}

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

.cookie-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .intro-text h2,
    .trust-text h2,
    .section-title,
    .centered-title {
        font-size: 30px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .hours-day {
        max-width: 100%;
    }

    .timeline-item {
        flex-direction: column;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

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

    .intro-text h2,
    .section-title,
    .centered-title {
        font-size: 26px;
    }

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

    .stat-number,
    .stat-value {
        font-size: 42px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}