:root {
    --primary-gradient-start: #3F51B5;
    --primary-gradient-end: #00BCD4;
    --accent-amber: #FFC107;
    --accent-emerald: #4CAF50;
    --text-dark: #212121;
    --text-light: #FFFFFF;
    --button-blue: #1A237E;
    --section-padding: 4rem 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-gradient-start);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gradient-end);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    background-color: var(--button-blue);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-gradient-start);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

/* Header */
header {
    background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

/* Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--text-light);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-amber);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

section {
    padding: 8rem 0 !important;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--text-light);
    padding: 10rem 0 6rem;
    text-align: center;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/ujLJT3.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.7), rgba(0, 188, 212, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem; /* Extra padding for fixed header */
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text {
    flex: 1;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background-color: #ffffff;
}

.benefits-title {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--accent-amber);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-gradient-start);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.05), rgba(0, 188, 212, 0.05));
}

.services-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.process-title {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
}

.process-step {
    position: relative;
    width: 180px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(63, 81, 181, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: #ffffff;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(63, 81, 181, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-details p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.05), rgba(0, 188, 212, 0.05));
}

.contact-title {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gradient-start);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
footer {
    background-color: var(--button-blue);
    color: var(--text-light);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-amber);
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-amber);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 10px;
    color: var(--accent-amber);
}

footer a {
    color: #ddd;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-amber);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
    text-align: left;
}

/* Legal Pages Styles */
.legal-content {
    flex: 1;
    padding: 8rem 2rem 4rem;
    background-color: #f9f9f9;
}

.legal-content .container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    color: var(--primary-gradient-start);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-gradient-start);
    margin: 2rem 0 1rem;
}

.legal-content ul, .legal-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: block;
    margin-top: 2rem;
    text-align: center;
}

/* Thank You Page */
.thank-you {
    flex: 1;
    padding: 15rem 2rem;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.05), rgba(0, 188, 212, 0.05));
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--accent-emerald);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 40px;
    }

    .process-step {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
    }

    .step-number {
        margin: 0 2rem 0 0;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    /* Navigation for mobile */
    .nav-toggle-label {
        display: block;
        font-size: 1.5rem;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease;
    }

    .nav-toggle:checked ~ nav {
        transform: scale(1, 1);
    }

    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }

    nav li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .hero {
        padding: 8rem 0 4rem; /* Increase padding-top for mobile */
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }
} 