:root {
    --primary-color: #1e3c72;
    --primary-dark: #152947;
    --primary-light: #2a5298;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
}

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

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

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

.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-light);
    margin-top: -2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

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

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-small {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

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

.highlight {
    color: var(--secondary-color);
}

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

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.trust-indicators {
    padding: 60px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.services {
    padding: 80px 0;
}

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

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card.featured {
    position: relative;
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f8fef9 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

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

.criteria-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.criteria-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list strong {
    color: var(--primary-color);
}

.service-cta {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.why-important {
    padding: 80px 0;
    background: var(--bg-light);
}

.evaluation-process {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.eval-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow);
}

.eval-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.eval-arrow {
    font-size: 36px;
    color: var(--primary-color);
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.importance-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
}

.importance-card.animate-in {
    animation: fadeInUp 0.6s forwards;
}

.importance-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

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

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

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

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.criteria-overview {
    padding: 80px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.criteria-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.95);
}

.criteria-card.animate-in {
    animation: scaleIn 0.5s forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.criteria-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.criteria-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.criteria-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.criteria-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.criteria-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.criteria-link:hover {
    text-decoration: underline;
}

.criteria-cta {
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 26px;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.required {
    color: var(--accent-color);
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-alternative {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.form-alternative p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.form-alternative a {
    display: block;
    margin: 8px 0;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-alternative a:hover {
    text-decoration: underline;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 14px;
}

.footer-experience {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 180px;
        margin-bottom: 15px;
    }

    .footer-grid {
        gap: 30px;
    }
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

.contact-list a {
    display: block;
    margin-bottom: 10px;
}

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

.footer-disclaimer {
    margin-top: 10px;
}

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

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

.service-detail {
    padding: 60px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

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

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

.benefit-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

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

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.benefit-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.criteria-detail {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.criteria-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.criteria-detail h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-works {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.why-works ul {
    margin-left: 20px;
}

.why-works li {
    margin-bottom: 10px;
}

.highlight-text {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
    font-weight: 500;
}

.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.sidebar-card.cta-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-color: var(--primary-color);
}

.sidebar-card h3,
.sidebar-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-contacts {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.sidebar-contacts p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.sidebar-contacts a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 8px;
    font-weight: 500;
}

.sidebar-contacts a:hover {
    text-decoration: underline;
}

.fact-list,
.service-links {
    list-style: none;
}

.fact-list li,
.service-links li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.fact-list li:last-child,
.service-links li:last-child {
    border-bottom: none;
}

.service-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.service-link-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.criteria-page {
    padding: 60px 0;
}

.intro-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.intro-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.two-tier-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tier {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.tier h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.criterion-detail {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
}

.criterion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.criterion-requirement {
    background: var(--bg-light);
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.criterion-content h4 {
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.criterion-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.criterion-content li {
    margin-bottom: 8px;
}

.sub-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.sub-criterion {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.sub-criterion h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h2 {
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.about-content {
    padding: 60px 0;
}

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

.lead-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.our-approach {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.our-approach h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.approach-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-trust {
    margin-bottom: 60px;
}

.why-trust h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.trust-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.trust-reason {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.trust-reason h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.important-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 60px;
}

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

.important-note p {
    margin-bottom: 15px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    font-size: 36px;
}

.method-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-link:hover {
    text-decoration: underline;
}

.working-hours {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.working-hours h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-section {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-section > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.faq-section {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 60px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.step-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

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

.step-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

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

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

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: block;
        padding-left: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.floating-btn.whatsapp {
    background: #25D366;
    color: white;
}

.floating-btn.whatsapp:hover {
    background: #128C7E;
}

.floating-btn.telegram {
    background: #0088cc;
    color: white;
}

.floating-btn.telegram:hover {
    background: #006699;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(30, 60, 114, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

/* FAQ Page */
.faq-page {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 3000px;
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-answer strong {
    color: var(--primary-color);
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.note-box {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.stats-box {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.success-rate-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.success-rate-box h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.evidence-list {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.evidence-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.evidence-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.evidence-item ul {
    margin-left: 20px;
}

.important-points {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.point-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.point-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 17px;
}

.point-card p {
    margin: 0;
    color: var(--text-dark);
}

.tips-list {
    counter-reset: tips-counter;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.tips-list li {
    counter-increment: tips-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.tips-list li::before {
    content: counter(tips-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.tips-list li strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.tips-list li p {
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.faq-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 40px 0;
    }

    .faq-category h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .tips-list li {
        padding-left: 50px;
    }

    .tips-list li::before {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .faq-cta {
        padding: 40px 25px;
    }

    .faq-cta h2 {
        font-size: 26px;
    }

    .faq-cta .cta-buttons {
        flex-direction: column;
    }

    .faq-cta .btn {
        width: 100%;
    }
}

/* Footer Legal Disclaimer */
.legal-disclaimer {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.legal-disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
    opacity: 0.9;
}

.footer-links {
    margin-top: 15px;
    font-size: 13px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-disclaimer {
        padding: 15px;
    }
    
    .legal-disclaimer p {
        font-size: 13px;
    }
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 26px;
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin: 30px 0 15px 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

.legal-content a:hover {
    color: var(--primary-dark);
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.warning-box p {
    margin-bottom: 10px;
}

.warning-box ul {
    margin-top: 10px;
}

.consent-box {
    background: #d1ecf1;
    border: 2px solid #17a2b8;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.consent-box h3 {
    color: #17a2b8;
    margin-top: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h2 {
        font-size: 22px;
    }

    .legal-content h3 {
        font-size: 18px;
    }
}

/* Quiz Styles */
.quiz-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.quiz-container {
    background: white;
    border-radius: 20px;
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

.quiz-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.quiz-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.quiz-progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 20px 20px 0 0;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s ease;
    border-radius: 20px 0 0 0;
}

.quiz-content {
    padding: 30px 30px 20px;
    overflow-y: auto;
    flex: 1;
}

.quiz-fade-in {
    animation: fadeIn 0.3s ease;
}

/* Welcome Screen */
.quiz-welcome {
    text-align: center;
}

.quiz-icon {
    font-size: 56px;
    margin-bottom: 18px;
}

.quiz-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.quiz-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.quiz-stats {
    background: #f0f7ff;
    color: #1976d2;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
}

/* Quiz Step */
.quiz-step {
    animation: fadeIn 0.3s ease;
}

.quiz-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quiz-step-number {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.quiz-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.quiz-hint {
    background: #fff3cd;
    color: #856404;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 18px;
    border-left: 4px solid #ffc107;
}

/* Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    position: relative;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background: #f8f9ff;
    transform: translateX(4px);
}

.quiz-option-highlight {
    border-color: #2ecc71;
    background: #f0fff4;
}

.quiz-option-highlight:hover {
    border-color: #27ae60;
    background: #e8f8f0;
}

.quiz-option-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.quiz-option-label {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.quiz-option-badge {
    background: #2ecc71;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.quiz-option-checkbox {
    position: relative;
    padding-right: 50px;
}

.quiz-checkbox {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: all 0.3s;
}

.quiz-option-selected {
    border-color: var(--primary-color);
    background: #f8f9ff;
}

.quiz-option-selected .quiz-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Buttons */
.quiz-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.quiz-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.quiz-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.3);
}

.quiz-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quiz-btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
}

.quiz-btn-secondary:hover {
    background: #f5f5f5;
}

.quiz-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.quiz-actions .quiz-btn {
    flex: 1;
}

/* Form */
.quiz-form {
    text-align: center;
}

.quiz-form-group {
    margin-bottom: 15px;
}

.quiz-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.quiz-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quiz-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

.quiz-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Results */
.quiz-results {
    text-align: center;
}

.quiz-results-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

.quiz-results-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.quiz-results-score {
    margin: 40px 0;
}

.quiz-score-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.quiz-score-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

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

.quiz-score-text {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.quiz-results-recommendations {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.quiz-results-recommendations h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quiz-results-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quiz-results-recommendations li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
}

.quiz-results-recommendations li:last-child {
    border-bottom: none;
}

.quiz-results-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.quiz-results-note {
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

/* Floating Button */
.quiz-floating-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
    transition: all 0.3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

.quiz-floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
}

.quiz-float-icon {
    font-size: 24px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quiz-container {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .quiz-content {
        padding: 30px 20px;
    }

    .quiz-title {
        font-size: 24px;
    }

    .quiz-question {
        font-size: 20px;
    }

    .quiz-icon {
        font-size: 48px;
    }

    .quiz-option {
        padding: 15px;
    }

    .quiz-option-icon {
        font-size: 24px;
        margin-right: 12px;
    }

    .quiz-option-label {
        font-size: 15px;
    }

    .quiz-floating-button {
        left: 10px;
        bottom: 10px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .quiz-float-text {
        display: none;
    }

    .quiz-score-circle {
        width: 150px;
        height: 150px;
    }

    .quiz-score-number {
        font-size: 48px;
    }

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

/* Quiz CTA Section */
.quiz-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.quiz-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.quiz-cta-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quiz-cta-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.quiz-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quiz-cta-section p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.quiz-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quiz-cta-features span {
    color: white;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
}

.quiz-cta-button {
    background: white;
    color: #667eea;
    font-size: 20px;
    padding: 18px 50px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.quiz-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.quiz-cta-note {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .quiz-cta-section {
        padding: 60px 0;
    }

    .quiz-cta-icon {
        font-size: 60px;
    }

    .quiz-cta-section h2 {
        font-size: 32px;
    }

    .quiz-cta-section p {
        font-size: 18px;
    }

    .quiz-cta-features {
        gap: 15px;
    }

    .quiz-cta-features span {
        font-size: 16px;
        padding: 8px 16px;
    }

    .quiz-cta-button {
        font-size: 18px;
        padding: 15px 40px;
        width: 100%;
    }
}

/* Thank You Page Styles */
.page-hero .thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.page-hero .thank-you-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.legal-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.legal-notice h3 {
    color: #856404;
    font-size: 18px;
    margin-bottom: 10px;
}

.legal-notice p {
    color: #856404;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-buttons .btn {
    text-align: center;
}

/* Advantages Showcase */
.advantages-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.advantage-showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
}

.advantage-showcase-card:hover::before {
    transform: scaleX(1);
}

.advantage-showcase-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.advantage-showcase-card:hover .advantage-showcase-icon {
    transform: scale(1.2) rotate(5deg);
}

.advantage-showcase-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-showcase-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .advantages-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .advantages-showcase {
        grid-template-columns: 1fr;
    }

    .advantage-showcase-card {
        padding: 25px 20px;
    }

    .advantage-showcase-icon {
        font-size: 40px;
    }

    .advantage-showcase-card h3 {
        font-size: 18px;
    }

    .advantage-showcase-card p {
        font-size: 14px;
    }
}

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.contact-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-handle {
    font-size: 14px;
    color: var(--text-light);
}

.next-steps {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    text-align: left;
}

.next-steps-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: white;
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.advantages {
    margin-top: 40px;
}

.advantages-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.advantage-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.advantage-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.back-home {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .page-hero .thank-you-icon {
        width: 60px;
        height: 60px;
    }

    .page-hero .thank-you-icon svg {
        width: 30px;
        height: 30px;
    }

    .legal-notice {
        padding: 15px 20px;
    }

    .legal-notice h3 {
        font-size: 16px;
    }

    .contact-buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .thank-you-container {
        padding: 40px 25px;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-subtitle {
        font-size: 18px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .next-steps {
        padding: 30px 20px;
    }

    .next-steps-title {
        font-size: 24px;
    }
}

.quiz-criterion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.quiz-step-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 12px;
    font-weight: 500;
}


.phone-input-wrapper {
    position: relative;
    display: block;
}

.phone-flag {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.phone-group input[type="tel"] {
    width: 100%;
    padding-left: 15px;
    transition: padding-left 0.2s ease;
}

.phone-group input[type="tel"].has-flag {
    padding-left: 45px;
}

.field-error {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    padding: 5px 10px;
    background: #ffebee;
    border-radius: 4px;
    border-left: 3px solid #e74c3c;
}

input.error,
textarea.error {
    border-color: #e74c3c !important;
    background-color: #fff5f5 !important;
}

/* Mobile phone input adjustments */
@media (max-width: 768px) {
    .phone-flag {
        font-size: 18px;
        left: 10px;
    }

    .phone-group input[type="tel"] {
        font-size: 16px;
        padding-left: 12px;
    }

    .phone-group input[type="tel"].has-flag {
        padding-left: 38px;
    }

    /* Prevent zoom on iOS when focusing input */
    input[type="tel"],
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 16px !important;
    }
}
