:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #60a5fa;
    --text-color: #1f2937;
    --dark-bg: #111827;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-1: linear-gradient(135deg, #2563eb, #60a5fa);
    --gradient-2: linear-gradient(45deg, #1e40af, #3b82f6);
    --blur-effect: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: var(--blur-effect);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo h1 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    padding: 0 5%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://cdn.moongetsu.ro/TCS/Website/Background-Website.png') center/cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
    max-width: 600px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    background: var(--secondary-color);
}

.cta-button:hover::before {
    left: 100%;
}

section {
    padding: 10rem 8%;
    position: relative;
}

.section-divider {
    position: relative;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    opacity: 0.1;
    margin: -50px 0;
    z-index: 1;
}

.section-divider svg {
    display: none;
}

section h2 {
    font-size: 3.5rem;
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--blur-effect);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card i {
    font-size: 2.5rem;
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.service-card i::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-card:hover i::after {
    transform: scale(1.5);
    opacity: 0.8;
}

.service-card h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0;
    font-size: 1.8rem;
}

.about {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
}

.about h2 {
    font-size: 4rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.about-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .stats {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 1rem 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }
}

.contact {
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
    padding: 6rem 5%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: var(--blur-effect);
    border: 1px solid var(--glass-border);
}

.contact-info {
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.contact-form {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    line-height: normal;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: var(--primary-color);
    padding: 0 0.5rem;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.submit-btn:hover::before {
    left: 100%;
}

.footer-anpc-links {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-anpc-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-anpc-links a:hover {
    opacity: 1;
}

.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: var(--blur-effect);
    border-bottom: 1px solid var(--glass-border);
}

.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--card-bg) 100%);
}

.service-card,
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        margin: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        margin: 1rem;
        border-radius: 15px;
    }

    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 0.8rem;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .contact-container {
        margin: 0.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem 1rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .form-group input:focus ~ label,
    .form-group textarea:focus ~ label,
    .form-group input:valid ~ label,
    .form-group textarea:valid ~ label {
        font-size: 0.7rem;
        padding: 0 0.3rem;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

.benefits {
    background: var(--card-bg);
    padding: 8rem 5%;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

footer {
    background: var(--bg-dark);
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem 8%;
    border-radius: 20px 20px 0 0;
}

.footer-section {
    padding: 0;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.footer-section p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 1rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-business-info {
    background: rgba(139, 139, 139, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-business-info p {
    margin: 0.5rem 0;
    color: #000000;
}

.footer-business-info a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-container {
        margin: 1rem;
    }
    
    .about h2 {
        font-size: 3rem;
    }
}

.footer-credit {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 80px;
    height: auto;
}
.logo h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    background: var(--accent-gradient);
}
.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}
.logo h1:hover::after {
    width: 100%;
}

.blue-line {
    height: 2px;
    background-color: var(--primary-color);
    width: 100%;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    color: #fff;
    z-index: 1000;
    animation: slideDown 0.3s ease-in-out;
}

.popup.success {
    background-color: rgb(21, 87, 36);
}

.popup.error {
    background-color: #dc3545;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left center;
    }
}

.menu-toggle {
    display: none;
    width: 35px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 13px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 13px;
}

.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(2px);
    animation: particleFloat 20s infinite linear;
    opacity: 0.3;
}

.particle:nth-child(1) { left: 10%; animation-duration: 15s; }
.particle:nth-child(2) { left: 50%; animation-duration: 25s; }
.particle:nth-child(3) { left: 80%; animation-duration: 20s; }

@keyframes particleFloat {
    0% { top: -5%; }
    100% { top: 105%; }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    .logo {
        margin: 0 auto;
    }

    .logo-img {
        height: 40px;
        width: auto;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .contact-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        overflow-y: auto;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        height: auto;
    }

    .contact-form .form-group {
        margin-bottom: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.08);
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .submit-btn {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }

    .contact-form label {
        font-size: 0.9rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1000;
    border-top: 1px solid var(--glass-border);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #ffffff;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.cookie-learn-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}

.nav-icon a {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
}

.conference-services {
    background: linear-gradient(145deg, rgba(26, 35, 126, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--blur-effect);
}

.conference-services h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.conference-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.conference-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.feature-column h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-column h4 i {
    color: var(--primary-color);
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.feature-column ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.conference-cta {
    text-align: center;
    margin-top: 3rem;
}

.conference-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .conference-services {
        padding: 2rem;
    }

    .conference-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .conference-services h3 {
        font-size: 1.8rem;
    }

    .conference-intro {
        font-size: 1.1rem;
    }
}

/* Slideshow styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slides.active {
    opacity: 1;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slideshow-container:hover .prev,
.slideshow-container:hover .next {
    opacity: 1;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background: var(--primary-color);
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 

