:root {
    --bg-primary: #0B0B0E;
    --bg-secondary: #1A1B22;
    --accent-primary: #FF3366;
    --accent-secondary: #00D0FF;
    --text-color: #F3F4F6;
    --soft-accent: #2C2D35;
    --contrast-color: #FABD0B;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 27, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 27, 34, 0.98);
    box-shadow: 0 2px 20px rgba(255, 51, 102, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-decoration: none;
}

.nav-logo img {
    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-logo i {
    font-size: 2rem;
    color: var(--contrast-color);
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 208, 255, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

/* Удаляем старый эффект подчеркивания */
.nav-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #ff1744);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.btn-secondary:hover {
    background: var(--accent-secondary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--contrast-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    margin-bottom: 60px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    position: absolute;
    bottom: -200px;
    left: 20px;
    right: 20px;
    background: var(--soft-accent);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(243, 244, 246, 0.7);
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(243, 244, 246, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--soft-accent);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(243, 244, 246, 0.9);
}

.service-features i {
    color: var(--accent-secondary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--bg-primary);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.why-text p {
    font-size: 1.1rem;
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--soft-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(44, 45, 53, 0.8);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 4px;
    min-width: 24px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-item p {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Process Steps */
.process-steps {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Responsive for tablets */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

.step-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

.step-icon {
    margin: 2rem 0 1rem;
    font-size: 2.5rem;
    color: var(--contrast-color);
}

.step-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.step-item:hover img {
    transform: scale(1.05);
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-item p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-primary);
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 51, 102, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--contrast-color);
}

.testimonial-card p {
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background: white;
    color: var(--accent-primary);
    border: 2px solid white;
}

.cta-section .btn:hover {
    background: transparent;
    color: white;
}

.cta-section .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 150px;
    max-height: 200px;
    width: auto;
    height: auto;

}

.footer-logo img:hover {
    filter: brightness(1) invert(0);
    transform: scale(1.05);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--contrast-color);
}

.footer-section p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(243, 244, 246, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--soft-accent);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(243, 244, 246, 0.8);
}

.contact-info i {
    color: var(--accent-primary);
    min-width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-accent);
    color: rgba(243, 244, 246, 0.6);
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-accent);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.license-info h5,
.disclaimer-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.license-info p,
.disclaimer-info p {
    color: rgba(243, 244, 246, 0.7);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.license-info p strong {
    color: var(--text-color);
    font-weight: 600;
}

.disclaimer-info p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo img {
        max-width: 100px;
        max-height: 35px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-legal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .license-info h5,
    .disclaimer-info h5 {
        font-size: 0.95rem;
    }

    .license-info p,
    .disclaimer-info p {
        font-size: 0.8rem;
    }

    .footer-logo img {
        max-width: 100px;
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo img {
        max-width: 100px;
        max-height: 35px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .testimonial-card,
    .feature-item {
        padding: 1.5rem;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-image {
        margin-bottom: 50px;
    }
}
.service-category {
    color: var(--accent-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.service-detailed-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detailed-text img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-detailed-text h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-detailed-text p {
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(26, 27, 34, 0.8);
    transform: translateX(5px);
}

.feature-row i {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.feature-row span {
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.5;
}

.service-detailed-pricing {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.service-detailed-pricing h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.pricing-table {
    margin-bottom: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span {
    color: rgba(243, 244, 246, 0.8);
}

.pricing-row strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Credit Calculator */
.credit-calculator {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.calculator-container {
    background: var(--soft-accent);
    border-radius: 25px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.input-suffix {
    position: absolute;
    right: 6px;
    color: var(--accent-secondary);
    font-weight: 600;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-secondary);
    outline: none;
    margin-top: 1rem;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 51, 102, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 51, 102, 0.3);
}

.calculator-results {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.calculator-results h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.result-item span {
    color: rgba(243, 244, 246, 0.8);
}

.result-item strong {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.calculator-chart {
    margin: 2rem 0;
    text-align: center;
}

/* Price Comparison */
.price-comparison {
    padding: 80px 0;
    background: var(--bg-primary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--soft-accent);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--bg-secondary);
    color: var(--text-color);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comparison-table th:hover {
    background: rgba(26, 27, 34, 0.8);
}

.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(243, 244, 246, 0.9);
}

.comparison-table tr:hover {
    background: rgba(255, 51, 102, 0.05);
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-info i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.product-info strong {
    color: var(--text-color);
    display: block;
}

.product-info small {
    color: rgba(243, 244, 246, 0.6);
    font-size: 0.8rem;
}

.feature-tag {
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    border: 1px solid rgba(0, 208, 255, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.comparison-note {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--contrast-color);
}

.comparison-note p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.comparison-note i {
    color: var(--contrast-color);
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid, .faq-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--soft-accent);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 27, 34, 0.5);
}

.faq-question h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Process Steps Detailed */
.process-steps-detailed {
    padding: 100px 0;
    background: var(--bg-primary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content ul li {
    color: rgba(243, 244, 246, 0.8);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

/* Стили для изображений в process-steps-detailed */
.process-step .step-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 51, 102, 0.1);
}

.process-step:hover .step-content img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.3);
    border-color: rgba(255, 51, 102, 0.3);
}

/* Добавляем градиентный оверлей при наведении */
.process-step .step-content {
    position: relative;
}

.process-step .step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 208, 255, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.process-step:hover .step-content::before {
    opacity: 1;
}

/* Contact Page Styles */
.contact-methods {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.contact-method {
    background: var(--soft-accent);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-method h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-method p {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details strong {
    color: var(--text-color);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details span {
    color: rgba(243, 244, 246, 0.7);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-content {
    background: var(--soft-accent);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: rgba(243, 244, 246, 0.8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    cursor: pointer;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.sidebar-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.5;
}

.sidebar-card ul li:last-child {
    margin-bottom: 0;
}

.sidebar-card ul li i {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    min-width: 20px;
}

.sidebar-card ul li i.bi-check-circle {
    color: #22c55e;
}

.sidebar-card ul li i.bi-file-text {
    color: var(--accent-primary);
}

.consultation-info {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.consultation-info h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-item i {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.advantage-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.3rem;
}

.advantage-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-sidebar {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 208, 255, 0.2);
}

.testimonial-sidebar .testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-sidebar p {
    color: rgba(243, 244, 246, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-sidebar .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-sidebar .testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-sidebar .testimonial-author strong {
    color: var(--text-color);
    display: block;
}

.testimonial-sidebar .testimonial-author span {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

/* Office Info */
.office-info {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.office-details h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.office-details p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.office-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-top: 2px;
    min-width: 24px;
}

.info-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.appointment-booking {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.appointment-booking h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.appointment-booking p {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 1.5rem;
}

.appointment-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.office-image {
    position: relative;
}

.office-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.office-features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(44, 45, 53, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
}

.office-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.8rem;
}

.office-features .feature i {
    color: var(--accent-secondary);
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-placeholder iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    display: block;
    background: none;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--accent-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%) translateY(0); }
    40% { transform: translate(-50%, -50%) translateY(-10px); }
    60% { transform: translate(-50%, -50%) translateY(-5px); }
}

.map-info {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 51, 102, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    max-width: 300px;
}

.map-info h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-info p {
    color: rgba(243, 244, 246, 0.9);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-info p i {
    color: var(--accent-primary);
    margin-right: 0.5rem;
    width: 16px;
}

/* Team Contact */
.team-contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-contact-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.team-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.team-member-image {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--soft-accent);
}

.online-status.online {
    background: #22c55e;
}

.online-status.busy {
    background: var(--accent-primary);
}

.team-member-info {
    text-align: center;
}

.team-member-info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-description {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.availability {
    color: rgba(243, 244, 246, 0.6);
    font-size: 0.8rem;
}

/* Cookie Styles */
.cookie-settings {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.cookie-settings h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(243, 244, 246, 0.9);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: var(--accent-primary);
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-type-header i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.cookie-type-header h3 {
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.cookie-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-status.essential {
    background: var(--accent-primary);
    color: white;
}

.cookie-status.optional {
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    border: 1px solid rgba(0, 208, 255, 0.3);
}

.cookie-examples {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.cookie-examples strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-examples ul {
    margin: 0;
    padding-left: 1rem;
}

.cookie-examples ul li {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 0.3rem;
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--soft-accent);
    border-radius: 15px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: var(--bg-secondary);
    color: var(--text-color);
    font-weight: 600;
}

.cookie-table td {
    color: rgba(243, 244, 246, 0.9);
}

.cookie-table code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--accent-secondary);
}

.cookie-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-badge.essential {
    background: var(--accent-primary);
    color: white;
}

.cookie-badge.analytics {
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    border: 1px solid rgba(0, 208, 255, 0.3);
}

.cookie-badge.functional {
    background: var(--bg-secondary);
    color: var(--contrast-color);
    border: 1px solid rgba(250, 189, 11, 0.3);
}

.third-party-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.service-header h4 {
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.service-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--bg-secondary);
    color: var(--accent-secondary);
}

.service-details {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.service-details strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.service-details ul {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.service-details ul li {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 0.3rem;
}

.service-details p {
    color: rgba(243, 244, 246, 0.8);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.service-details a {
    color: var(--accent-primary);
    text-decoration: none;
}

.service-details a:hover {
    text-decoration: underline;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.browser-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.1);
}

.browser-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.browser-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.browser-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.browser-item a {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
}

.browser-item a:hover {
    text-decoration: underline;
}

.cookie-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
}

.version-history {
    margin: 2rem 0;
}

.version-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--soft-accent);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.version-date {
    background: var(--accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
}

.version-details strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.version-details p {
    color: rgba(243, 244, 246, 0.8);
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.contact-method strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: rgba(243, 244, 246, 0.8);
    margin: 0.3rem 0;
}

.contact-method small {
    color: rgba(243, 244, 246, 0.6);
    font-size: 0.8rem;
}

.additional-resources {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.additional-resources h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.additional-resources ul {
    list-style: none;
    padding: 0;
}

.additional-resources ul li {
    margin-bottom: 0.5rem;
}

.additional-resources ul li a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.additional-resources ul li a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

/* Terms Page Specific Styles */
.fee-structure {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.fee-structure h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: rgba(243, 244, 246, 0.9);
}

.fee-item i {
    color: var(--accent-secondary);
}

.withdrawal-notice {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-primary);
}

.withdrawal-notice p {
    margin-bottom: 1rem;
}

.withdrawal-notice p:last-child {
    margin-bottom: 0;
}

.company-info {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.company-details {
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.6;
}

.company-details strong {
    color: var(--text-color);
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .legal-content .container {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detailed-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .office-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .legal-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: static;
        order: 2;
    }
    
    .legal-main {
        order: 1;
        padding: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .office-info-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-options {
        flex-direction: column;
    }
    
    .team-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-year {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .cookie-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .version-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .version-date {
        min-width: auto;
        width: fit-content;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .legal-main {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .service-detailed-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-detailed-content {
        padding: 2rem;
    }
    
    .form-content {
        padding: 2rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .team-contact-card {
        padding: 1.5rem;
    }
    
    .cookie-type-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .cookie-type-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .service-filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .floating-elements,
    .hamburger {
        display: none !important;
    }
    
    .page-hero {
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }
    
    .legal-content .container {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        display: none;
    }
    
    .legal-main {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .legal-section h2,
    .legal-section h3,
    .legal-section h4 {
        color: black !important;
    }
    
    .legal-section p,
    .legal-section li {
        color: black !important;
    }
    
    .info-box,
    .warning-box {
        border: 1px solid #ccc !important;
        background: #f9f9f9 !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

    

    /* Page-specific styles */

/* Page Hero Styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 2rem;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(243, 244, 246, 0.6);
}

.hero-breadcrumb a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--accent-primary);
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.legal-content .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.toc {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.toc h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.toc ul {
    list-style: none;
}

.toc ul li {
    margin-bottom: 0.5rem;
}

.toc ul li a {
    color: rgba(243, 244, 246, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.toc ul li a:hover {
    color: var(--accent-primary);
    padding-left: 10px;
}

.quick-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.quick-info h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.quick-info p {
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.legal-main {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

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

.legal-section h4 {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-section p {
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    color: rgba(243, 244, 246, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.legal-section a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* Info Boxes */
.info-box, .warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.info-box {
    background: rgba(0, 208, 255, 0.1);
    border-left: 4px solid var(--accent-secondary);
}

.warning-box {
    background: rgba(255, 51, 102, 0.1);
    border-left: 4px solid var(--accent-primary);
}

.info-box i, .warning-box i {
    font-size: 1.5rem;
    margin-top: 2px;
    min-width: 24px;
}

.info-box i {
    color: var(--accent-secondary);
}

.warning-box i {
    color: var(--accent-primary);
}

.info-box strong, .warning-box strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Details */
.contact-details {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

/* Data Tables */
.data-table, .retention-table {
    width: 100%;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.data-table table, .retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--soft-accent);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th, .retention-table th,
.data-table td, .retention-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th, .retention-table th {
    background: var(--bg-secondary);
    color: var(--text-color);
    font-weight: 600;
}

.data-table td, .retention-table td {
    color: rgba(243, 244, 246, 0.9);
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.purpose-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.purpose-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.purpose-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Basis Items */
.legal-basis-item {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-primary);
}

.legal-basis-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Service Providers */
.service-providers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.provider-item {
    background: var(--soft-accent);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.provider-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 208, 255, 0.2);
}

.right-item i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.right-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.right-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Exercise Rights */
.exercise-rights {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.authority-contact {
    background: var(--soft-accent);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 189, 11, 0.2);
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(250, 189, 11, 0.2);
}

.security-item i {
    font-size: 2rem;
    color: var(--contrast-color);
    margin-bottom: 1rem;
}

.security-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.security-item p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* About Page Styles */
.company-story {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-text p {
    font-size: 1.1rem;
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--soft-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(44, 45, 53, 0.8);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    min-width: 24px;
}

.highlight-item strong {
    color: var(--text-color);
    display: block;
    font-size: 1.1rem;
}

.highlight-item span {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Mission Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-primary);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: var(--soft-accent);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.card-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.mission-card img, .vision-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

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

.mission-card p, .vision-card p {
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-card ul, .vision-card ul {
    list-style: none;
}

.mission-card ul li, .vision-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    color: rgba(243, 244, 246, 0.9);
}

.mission-card ul li i, .vision-card ul li i {
    color: var(--accent-secondary);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.team-member {
    background: var(--soft-accent);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-links a {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-overlay .social-links a:hover {
    background: var(--accent-secondary);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Member Experience Section */
.member-experience {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-secondary);
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(243, 244, 246, 0.9);
    font-size: 0.9rem;
}

.experience-item i {
    color: var(--accent-secondary);
    font-size: 1rem;
    min-width: 16px;
}

.experience-item strong {
    color: var(--text-color);
}

.member-description {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Consultation Areas Section */
.consultation-areas {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.consultation-areas h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.consultation-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consultation-areas ul li {
    color: rgba(243, 244, 246, 0.8);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.consultation-areas ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 0.8rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-expertise span {
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 208, 255, 0.3);
}

/* Responsive Design for Team Section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-experience {
        padding: 0.8rem;
    }
    
    .consultation-areas {
        padding: 0.8rem;
    }
    
    .experience-item {
        font-size: 0.85rem;
    }
    
    .consultation-areas ul li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .member-image img {
        height: 250px;
    }
    
    .member-experience,
    .consultation-areas {
        padding: 0.8rem;
    }
    
    .experience-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .consultation-areas ul li {
        padding-left: 1rem;
    }
}

/* Company Values */
.company-values {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.value-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.value-card p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.award-item {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 189, 11, 0.2);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(250, 189, 11, 0.2);
}

.award-item img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.award-content h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.award-content p {
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.award-year {
    background: var(--contrast-color);
    color: var(--bg-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Company Timeline */
.company-timeline {
    padding: 100px 0;
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.timeline-content {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    width: 45%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.timeline-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
}

/* Services Page Styles */
.service-filter {
    padding: 40px 0;
    background: var(--bg-secondary);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--soft-accent);
    color: rgba(243, 244, 246, 0.8);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-filter-btn:hover,
.service-filter-btn.active {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.main-services {
    padding: 80px 0;
    background: var(--bg-primary);
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detailed-card {
    background: var(--soft-accent);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 51, 102, 0.2);
}

.service-detailed-header {
    background: var(--bg-secondary);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-detailed-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-detailed-meta h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.service-category {
    color: var(--accent-secondary);
}

.service-detailed-content {
    padding: 2rem;
    background: var(--bg-secondary);
}

/* Service Page Specific Styles */

/* Service Overview Section */
.service-overview {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.overview-intro {
    font-size: 1.1rem;
    color: rgba(243, 244, 246, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-example {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-secondary);
}

.benefit-example strong {
    color: var(--text-color);
}

.benefit-example p {
    color: rgba(243, 244, 246, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advantage-example {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-secondary);
}

.advantage-example strong {
    color: var(--text-color);
}

.advantage-example p {
    color: rgba(243, 244, 246, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* When to Refinance Section */
.when-refinance {
    padding: 80px 0;
    background: var(--bg-primary);
}

.refinance-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.opportunity-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.opportunity-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.opportunity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.opportunity-header h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
}

.opportunity-card p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.opportunity-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-label {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

.indicator-value {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.indicator-value.high {
    background: var(--accent-primary);
    color: white;
}

.indicator-value.medium {
    background: var(--contrast-color);
    color: var(--bg-primary);
}

.indicator-value.low {
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    border: 1px solid rgba(0, 208, 255, 0.3);
}

/* KfW Programs Section */
.kfw-programs {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.program-category {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.program-category h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-category h3 i {
    color: var(--accent-primary);
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-item h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.program-item p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--accent-secondary);
    min-width: 16px;
}

/* Application Process Section */
.application-process {
    padding: 80px 0;
    background: var(--bg-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content ul li {
    color: rgba(243, 244, 246, 0.8);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.requirements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.requirements-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.requirements-text p {
    font-size: 1.1rem;
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.requirement-category {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.requirement-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.requirement-category h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-category h3 i {
    color: var(--accent-primary);
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category ul li {
    color: rgba(243, 244, 246, 0.8);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.requirement-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

.requirements-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.requirements-sidebar .info-box {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-secondary);
    margin: 0;
}

.bonity-check {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.bonity-check:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.bonity-check h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonity-check h3::before {
    content: '\F3E1';
    font-family: 'bootstrap-icons';
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.bonity-check p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonity-check .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Responsive Design for Requirements Section */
@media (max-width: 1024px) {
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .requirements-section {
        padding: 60px 0;
    }
    
    .requirements-text h2 {
        font-size: 2rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirement-category {
        padding: 1.5rem;
    }
    
    .bonity-check {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .requirements-text h2 {
        font-size: 1.8rem;
    }
    
    .requirements-text p {
        font-size: 1rem;
    }
    
    .requirement-category h3 {
        font-size: 1.2rem;
    }
    
    .bonity-check h3 {
        font-size: 1.2rem;
    }
}

/* Calculator Results */
.calculator-results h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.result-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.result-label {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
}

.result-value {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.result-value.savings {
    color: #22c55e;
}

.calculator-info {
    background: var(--soft-accent);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-secondary);
}

.calculator-info p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calculator-info i {
    color: var(--accent-secondary);
    min-width: 16px;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .advantages-grid,
    .refinance-opportunities {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .advantages-grid,
    .refinance-opportunities {
        grid-template-columns: 1fr;
    }
    
    .program-details {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .opportunity-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .opportunity-indicator {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-overview,
    .benefits-section,
    .advantages-section,
    .when-refinance,
    .kfw-programs,
    .application-process,
    .requirements-section {
        padding: 60px 0;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .stat-card,
    .benefit-card,
    .advantage-card,
    .opportunity-card,
    .program-category,
    .process-step,
    .requirement-category {
        padding: 1.5rem;
    }
    
    .program-item {
        padding: 1rem;
    }
}

/* Thank You Page Styles */
.thank-you-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.thank-you-card {
    background: var(--soft-accent);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 51, 102, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    animation: successPulse 2s ease-in-out infinite;
}

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

.thank-you-card h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    color: rgba(243, 244, 246, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.steps-grid .step-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-grid .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

.steps-grid .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.steps-grid .step-item h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.steps-grid .step-item p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-info-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.contact-info-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-card p {
    color: rgba(243, 244, 246, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--soft-accent);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
    min-width: 250px;
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.2);
    background: rgba(44, 45, 53, 0.8);
}

.contact-option i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    min-width: 24px;
}

.contact-option strong {
    color: var(--text-color);
    display: block;
    font-size: 1rem;
}

.contact-option span {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
}

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

.action-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Additional Services Section */
.additional-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-preview-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.preview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.service-preview-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-preview-card p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-link:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .thank-you-card h2 {
        font-size: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 300px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 60px 0;
    }
    
    .thank-you-card {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .thank-you-card h2 {
        font-size: 1.3rem;
    }
    
    .thank-you-message {
        font-size: 1rem;
    }
    
    .next-steps h3 {
        font-size: 1.3rem;
    }
    
    .steps-grid .step-item {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-option {
        padding: 1rem;
        min-width: auto;
    }
    
    .service-preview-card {
        padding: 1.5rem;
    }
}

/* Map responsive styles */
@media (max-width: 768px) {
    .map-placeholder iframe {
        height: 300px;
    }
    
    .map-overlay {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .map-info {
        padding: 1rem;
        max-width: none;
        text-align: center;
    }
    
    .map-info h3 {
        font-size: 1.1rem;
    }
    
    .map-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .map-placeholder iframe {
        height: 250px;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        margin-top: 1rem;
    }
    
    .map-info {
        padding: 1rem;
        text-align: center;
    }
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--soft-accent);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
}

.use-case-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.use-case-card:hover h3 {
    color: var(--accent-primary);
}

.use-case-card p {
    color: rgba(243, 244, 246, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.use-case-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 208, 255, 0.3);
    transition: all 0.3s ease;
}

.use-case-card:hover .feature-tag {
    background: var(--accent-secondary);
    color: var(--bg-primary);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

/* Responsive Design for Use Cases */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .use-cases {
        padding: 80px 0;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 2rem;
    }
    
    .use-case-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .use-case-card h3 {
        font-size: 1.3rem;
    }
    
    .use-case-features {
        gap: 0.4rem;
    }
    
    .feature-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .use-cases {
        padding: 60px 0;
    }
    
    .use-case-card {
        padding: 1.5rem;
    }
    
    .use-case-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .use-case-card h3 {
        font-size: 1.2rem;
    }
    
    .use-case-card p {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}