/* Global Styles */
:root {
    --primary-dark: #111339;
    --primary-darker: #090b27;
    --primary-light: #3a3c66;
    --accent-pink: #e85fcd;
    --accent-purple: #b765e8;
    --accent-red: #e8656b;
    --accent-orange: #e88e65;
    --accent-green: #65e87f;
    --accent-blue: #65a7e8;
    --light-text: #ffffff;
    --light-gray: #f0f0f0;
    --border-radius: 12px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-pink);
    color: var(--light-text);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #d04db8;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-pink);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    padding: 50px 0;
    border-radius: 0 0 30px 30px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--accent-pink);
}

.hero-text p {
    margin-bottom: 30px;
}

.banner-image {
    border-radius: var(--border-radius);
    width: 100%;
}

/* About Us Section */
.about-us {
    padding: 70px 0;
    background-color: #ffffff;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-pink);
    margin: 15px auto 0;
}

.about-text p {
    margin-bottom: 20px;
}

.philosophy-box {
    background-color: var(--primary-dark);
    color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 30px;
}

.philosophy-box h3 {
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.finance-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services {
    padding: 70px 0;
    background-color: var(--primary-dark);
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-pink);
    position: relative;
}

.services h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-pink);
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-title.red {
    color: var(--accent-red);
}

.service-title.pink {
    color: var(--accent-pink);
}

.service-title.purple {
    color: var(--accent-purple);
}

.service-title.green {
    color: var(--accent-green);
}

.service-title.orange {
    color: var(--accent-orange);
}

.service-title.blue {
    color: var(--accent-blue);
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background-color: #ffffff;
    color: #333;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    position: relative;
}

.faq h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-pink);
    margin: 15px auto 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: var(--light-gray);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-question.orange h3 {
    color: var(--accent-orange);
}

.faq-question.red h3 {
    color: var(--accent-red);
}

.faq-question.blue h3 {
    color: var(--accent-blue);
}

.faq-question.purple h3 {
    color: var(--accent-purple);
}

.faq-question.green h3 {
    color: var(--accent-green);
}

.faq-question.pink h3 {
    color: var(--accent-pink);
}

.accordion-icon {
    color: #888;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .accordion-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Contact Section */
.contact {
    padding: 70px 0;
    background-color: var(--primary-dark);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-pink);
    position: relative;
}

.contact h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--accent-pink);
    margin: 15px auto 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group:nth-child(4) {
    grid-column: span 2;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    grid-column: span 2;
    justify-self: center;
    min-width: 200px;
}

.cityscape-image {
    border-radius: var(--border-radius);
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-top: 30px;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin: 30px 0;
    color: var(--accent-pink);
}

.thank-you-content p {
    margin-bottom: 30px;
}

.thank-you-content a {
    margin-top: 20px;
    display: inline-block;
}

.team-image {
    border-radius: var(--border-radius);
    max-width: 100%;
    margin-bottom: 20px;
}

/* Policy Pages */
.policy-content {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333;
}

.policy-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-pink);
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 0 0 20px 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--primary-darker);
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .about-image {
        order: 2;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1, .about-text h2, .services h2, .faq h2, .contact h2, .thank-you-content h1, .policy-content h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(4) {
        grid-column: span 1;
    }
    
    .contact-form button {
        grid-column: span 1;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-text h1, .about-text h2, .services h2, .faq h2, .contact h2 {
        font-size: 1.8rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .hero {
        border-radius: 0 0 20px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}