/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1a2b4d 0%, #00e5d4 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(26, 43, 77, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 43, 77, 0.9) 0%, rgba(0, 229, 212, 0.8) 100%), url('./img/23eHhP.jpg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00e5d4 0%, #00b8a9 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 229, 212, 0.4);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.hero-section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a2b4d;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #00e5d4 0%, #ff6b7a 100%);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2d3748;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 77, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(26, 43, 77, 0.25);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1a2b4d;
    margin-bottom: 10px;
    font-size: 22px;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 77, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #00e5d4 0%, #ff6b7a 100%);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(26, 43, 77, 0.25);
    border-color: #00e5d4;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1a2b4d;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #2d3748;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00e5d4;
    font-weight: bold;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00e5d4 0%, #00b8a9 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 212, 0.4);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #1a2b4d 0%, #2d3748 100%);
    color: #ffffff;
}

.process-section .section-title {
    color: #ffffff;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00e5d4 0%, #ff6b7a 100%);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    width: 45%;
    border: 2px solid rgba(0, 229, 212, 0.3);
}

.process-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00e5d4 0%, #ff6b7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 229, 212, 0.5);
}

.process-step h3 {
    color: #00e5d4;
    margin-bottom: 10px;
    font-size: 22px;
}

/* Benefits Section */
.benefits-section {
    background-color: #f0f4f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 77, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #00e5d4;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 43, 77, 0.25);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffc857;
}

.benefit-card h3 {
    color: #1a2b4d;
    margin-bottom: 15px;
    font-size: 22px;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #00e5d4 0%, #00b8a9 100%);
    color: #ffffff;
}

.stats-section .section-title {
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 77, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #00e5d4;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 43, 77, 0.25);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.8;
}

.testimonial-rating {
    color: #ffc857;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #1a2b4d;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(26, 43, 77, 0.05) 0%, rgba(0, 229, 212, 0.05) 100%);
    padding: 80px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(26, 43, 77, 0.2);
    border: 3px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #00e5d4 0%, #ff6b7a 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #00e5d4 0%, #ff6b7a 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a2b4d;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #2d3748;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00e5d4;
    box-shadow: 0 0 0 4px rgba(0, 229, 212, 0.1), 0 5px 20px rgba(0, 229, 212, 0.2);
    transform: translateY(-2px);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #00e5d4;
}

.checkbox-item label {
    font-size: 14px;
    color: #2d3748;
    cursor: pointer;
}

.checkbox-item label a {
    color: #2d3748;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-item label a:hover {
    color: #1a2b4d;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00e5d4 0%, #00b8a9 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 229, 212, 0.4);
    animation: pulse 2s infinite;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 229, 212, 0.6);
    background: linear-gradient(135deg, #00b8a9 0%, #00e5d4 100%);
}

/* Contact Section */
.contact-section {
    background-color: #1a2b4d;
    color: #ffffff;
}

.contact-section .section-title {
    color: #ffffff;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(0, 229, 212, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.contact-item:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
}

.contact-item h3 {
    color: #00e5d4;
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-item p,
.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.8;
}

.contact-item a:hover {
    color: #00e5d4;
    text-decoration: underline;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a2b4d 100%);
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #00e5d4;
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00e5d4;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2b4d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: #00e5d4;
    text-decoration: none;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.btn-accept {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00e5d4 0%, #00b8a9 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 229, 212, 0.4);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 212, 0.6);
}

/* Policy Pages */
.policy-page {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 77, 0.15);
    border: 2px solid #e0e0e0;
    margin-top: 30px;
}

.policy-content h1 {
    color: #1a2b4d;
    margin-bottom: 30px;
    font-size: 36px;
    text-align: center;
}

.policy-content h2 {
    color: #1a2b4d;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    border-bottom: 2px solid #00e5d4;
    padding-bottom: 10px;
}

.policy-content h3 {
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #2d3748;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #2d3748;
}

.policy-contact {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #00e5d4;
}

.policy-contact h3 {
    color: #1a2b4d;
    margin-bottom: 20px;
}

.policy-contact p {
    margin-bottom: 10px;
}

.policy-contact a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
}

.policy-contact a:hover {
    color: #1a2b4d;
    text-decoration: underline;
}

.policy-contact p {
    color: #2d3748;
}

.policy-contact p strong {
    color: #1a2b4d;
}

/* FAQ Styles */
.faq-section {
    background-color: #f0f4f8;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(26, 43, 77, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(26, 43, 77, 0.15);
}

.faq-item summary {
    padding: 25px 30px;
    font-weight: bold;
    font-size: 18px;
    color: #1a2b4d;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 24px;
    color: #00e5d4;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    background-color: #f0f4f8;
    color: #00e5d4;
}

.faq-item .faq-answer {
    padding: 0 30px 25px 30px;
    color: #2d3748;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
    .menu-icon {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a2b4d 0%, #00e5d4 100%);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .menu-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    section {
        padding: 50px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .process-step-content {
        width: 100%;
    }

    .process-step-number {
        left: 20px;
        transform: translateX(0);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-accept {
        width: 100%;
    }

    .policy-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .features-grid,
    .services-grid,
    .benefits-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

