/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #F9F9F9;
    background: #2E2B5F;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(46, 43, 95, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #3DDC97;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #FF6F61;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #F9F9F9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3DDC97;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3DDC97, #FF6F61);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(135deg, #FF6F61, #3DDC97);
    color: #2E2B5F;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.3);
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #2E2B5F 0%, #3D3A7F 50%, #3DDC97 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 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="rgba(249,249,249,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F9F9F9, #3DDC97);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F61, #3DDC97);
    color: #2E2B5F;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 111, 97, 0.4);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F9F9F9, #3DDC97);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2E2B5F, #3D3A7F);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3D3A7F, #2E2B5F);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.1), rgba(255, 111, 97, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(61, 220, 151, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(61, 220, 151, 0.2);
    border-color: rgba(61, 220, 151, 0.4);
}

.service-image {
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #3DDC97;
    margin-bottom: 1rem;
}

.service-card p {
    color: #B0B0B0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature {
    background: rgba(61, 220, 151, 0.2);
    color: #3DDC97;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2E2B5F, #3D3A7F);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: #FF6F61;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3D3A7F, #2E2B5F);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(61, 220, 151, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 111, 97, 0.2);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 111, 97, 0.2);
}

.review-content p {
    color: #B0B0B0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author strong {
    color: #3DDC97;
    display: block;
    margin-bottom: 0.3rem;
}

.review-author span {
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2E2B5F, #3D3A7F);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.05), rgba(255, 111, 97, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(61, 220, 151, 0.2);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #3DDC97;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(46, 43, 95, 0.8);
    border: 2px solid rgba(61, 220, 151, 0.3);
    border-radius: 10px;
    color: #F9F9F9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3DDC97;
    box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.1);
}

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #3DDC97;
}

.checkbox-group label {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: #3DDC97;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF6F61, #3DDC97);
    color: #2E2B5F;
    padding: 1.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 111, 97, 0.4);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3D3A7F, #2E2B5F);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.05), rgba(255, 111, 97, 0.05));
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(61, 220, 151, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(61, 220, 151, 0.4);
}

.faq-question {
    padding: 1.5rem;
    color: #3DDC97;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FF6F61;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Contact Info Section */
.main-content .contact-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2E2B5F, #3D3A7F);
}

.main-content .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.main-content .contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-content .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.1), rgba(255, 111, 97, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(61, 220, 151, 0.2);
    transition: transform 0.3s ease;
}

.main-content .contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 2rem;
}

.main-content .contact-item h3 {
    color: #3DDC97;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.main-content .contact-item p,
.main-content .contact-item a {
    color: #B0B0B0;
    text-decoration: none;
    line-height: 1.5;
}

.main-content .contact-item a:hover {
    color: #3DDC97;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.google-map {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
    filter: hue-rotate(15deg) saturate(0.8) brightness(0.9);
}

.map-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(46, 43, 95, 0.9));
    padding: 2rem;
    color: #F9F9F9;
    font-weight: 600;
    z-index: 2;
}

/* Footer */
.footer {
    background: #1E1B3F;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #3DDC97;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #3DDC97;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-label {
    color: #FF6F61;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

.legal-list {
    list-style: none;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(61, 220, 151, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #B0B0B0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2E2B5F, #3D3A7F);
    padding: 1.5rem;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top: 2px solid rgba(61, 220, 151, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #B0B0B0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-accept {
    background: linear-gradient(135deg, #FF6F61, #3DDC97);
    color: #2E2B5F;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
}

.btn-learn-more {
    color: #3DDC97;
    text-decoration: underline;
    padding: 0.8rem 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container,
    .about-content,
    .main-content .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .advantages-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.advantage-item,
.review-card,
.faq-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Policy Pages Styles */
.policy-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #2E2B5F, #3D3A7F);
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.05), rgba(255, 111, 97, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(61, 220, 151, 0.2);
    backdrop-filter: blur(10px);
}

.policy-content h1 {
    font-size: 2.8rem;
    color: #3DDC97;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.policy-intro {
    font-size: 1.2rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(255, 111, 97, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 111, 97, 0.2);
}

.policy-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.policy-item h2 {
    color: #FF6F61;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-left: 4px solid #FF6F61;
    padding-left: 1rem;
}

.policy-item h3 {
    color: #3DDC97;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.policy-item p {
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-item ul {
    list-style: none;
    padding-left: 0;
}

.policy-item li {
    color: #B0B0B0;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.policy-item li::before {
    content: '▸';
    color: #3DDC97;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-item a {
    color: #3DDC97;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-item a:hover {
    color: #FF6F61;
}

.cookie-type,
.cookie-management,
.browser-instructions {
    background: rgba(46, 43, 95, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 1px solid rgba(61, 220, 151, 0.2);
}

.browser-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(61, 220, 151, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(61, 220, 151, 0.2);
}

.browser-item h3 {
    margin: 0 0 0.5rem 0;
    color: #3DDC97;
    font-size: 1.1rem;
}

.browser-item p {
    margin: 0;
    color: #B0B0B0;
    font-size: 0.95rem;
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 220, 151, 0.2);
}

.policy-footer p {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.policy-nav {
    text-align: center;
    margin-top: 2rem;
}

.btn-back {
    display: inline-block;
    background: linear-gradient(135deg, #FF6F61, #3DDC97);
    color: #2E2B5F;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.3);
}

/* Policy pages responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }
    
    .policy-content h1 {
        font-size: 2.2rem;
    }
    
    .policy-item h2 {
        font-size: 1.3rem;
    }
    
    .policy-item li {
        padding-left: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .hero-btn,
    .contact-form,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
