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

:root {
    --primary-blue: #0066CC;
    --vibrant-red: #E63946;
    --bright-yellow: #FFD60A;
    --pure-white: #FFFFFF;
    --deep-black: #1A1A1A;
    --neutral-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #4A4A4A;
    --success-green: #06D6A0;
    --warning-orange: #F77F00;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-black);
    line-height: 1.6;
    overflow-x: hidden;
}

.iti {
    width: 100%;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    height: 50px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav .nav-link {
    color: var(--deep-black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: var(--vibrant-red);
    color: var(--pure-white);
}

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

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

#slideout-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--deep-black);
    z-index: 2000;
    transition: transform 0.3s;
    padding: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.mobile-nav .nav-link-mobile {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav .nav-link-mobile:hover,
.mobile-nav .nav-link-mobile.active {
    color: var(--bright-yellow);
}

.hero-section {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 150px 0 100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-hero {
    background: var(--bright-yellow);
    color: var(--deep-black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--vibrant-red);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-section {
    background: var(--vibrant-red);
    color: var(--pure-white);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--pure-white);
    color: var(--deep-black);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--vibrant-red);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industries-section {
    background: var(--bright-yellow);
    padding: 100px 0;
}

.industry-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s;
}

.industry-card:hover {
    border-left-color: var(--vibrant-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.industry-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

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

.advantage-item {
    padding: 2rem;
    background: var(--neutral-gray);
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s;
}

.advantage-item:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vibrant-red);
    margin-bottom: 1rem;
}

.advantage-item:hover .advantage-number {
    color: var(--bright-yellow);
}

.advantage-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

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

.languages-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.languages-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.languages-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
    font-weight: 500;
}

.languages-list li:before {
    content: '→';
    color: var(--vibrant-red);
    font-weight: 700;
    margin-right: 1rem;
}

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

.mistake-card {
    background: var(--pure-white);
    color: var(--deep-black);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-top: 5px solid var(--vibrant-red);
}

.mistake-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--vibrant-red);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.contact-form {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-black);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-check {
    margin-top: 1rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-check-label {
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

.btn-submit {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--vibrant-red);
    transform: translateY(-3px);
}

.cta-section {
    background: var(--vibrant-red);
    color: var(--pure-white);
    padding: 100px 0;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    background: var(--bright-yellow);
    color: var(--deep-black);
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: var(--pure-white);
    color: var(--vibrant-red);
    transform: translateY(-3px);
}

.footer {
    background: var(--deep-black);
    color: var(--pure-white);
    padding: 50px 0 20px;
}

.footer h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bright-yellow);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    animation: modalSlideIn 0.3s;
}

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

.modal-icon {
    font-size: 4rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

.help-section,
.team-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.help-section-alt,
.team-section-alt {
    padding: 80px 0;
    background: var(--neutral-gray);
}

.help-content,
.team-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.help-content h3,
.team-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--primary-blue);
}

.help-content h4,
.team-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--vibrant-red);
}

.help-content p,
.team-content p {
    margin-bottom: 1rem;
}

.help-content ul,
.team-content ul {
    margin: 1rem 0 1rem 2rem;
}

.help-content a,
.team-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.help-content a:hover,
.team-content a:hover {
    text-decoration: underline;
}

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

.contact-info-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--vibrant-red);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-black);
}

.contact-details p {
    margin: 0;
}

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

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

.contact-additional {
    background: var(--neutral-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-additional h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 10px;
}

.thanks-section {
    padding: 150px 0 100px;
    background: var(--neutral-gray);
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-green);
    margin-bottom: 2rem;
}

.thanks-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-info {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.next-step {
    padding: 2rem;
    background: var(--neutral-gray);
    border-radius: 10px;
    height: 100%;
}

.next-step .step-number {
    background: var(--vibrant-red);
    color: var(--pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--vibrant-red);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--bright-yellow);
    color: var(--deep-black);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--warning-orange);
    color: var(--pure-white);
    transform: translateY(-3px);
}

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

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--primary-blue);
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--vibrant-red);
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background: var(--primary-blue);
    color: var(--pure-white);
}

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

.cookie-table tbody tr:nth-child(even) {
    background: var(--neutral-gray);
}

.cookie-settings-btn {
    text-align: center;
    margin-top: 3rem;
}

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-black);
    color: var(--pure-white);
    padding: 2rem;
    z-index: 2500;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-consent-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    margin-bottom: 0.5rem;
}

.cookie-consent-text a {
    color: var(--bright-yellow);
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn-accept:hover {
    background: var(--primary-blue);
}

.cookie-btn-reject {
    background: var(--vibrant-red);
    color: var(--pure-white);
}

.cookie-btn-reject:hover {
    background: var(--warning-orange);
}

.cookie-btn-settings {
    background: var(--medium-gray);
    color: var(--deep-black);
}

.cookie-btn-settings:hover {
    background: var(--bright-yellow);
}

#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 3500;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
}

#cookie-settings-modal.active {
    display: flex;
}

.cookie-settings-content {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.cookie-category {
    padding: 1.5rem;
    background: var(--neutral-gray);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-black);
}

.cookie-toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

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

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    transition: 0.4s;
    border-radius: 30px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--success-green);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-settings-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-consent-content {
        flex-direction: column;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .thanks-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .services-section,
    .industries-section,
    .advantages-section,
    .process-section,
    .languages-section,
    .mistakes-section,
    .contact-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .btn-submit {
        font-size: 1rem;
    }
}