/* 
Main Color Palette:
- Deep Blue (#102542) - background
- Mint Neon (#2BF9B5) - accents and buttons
- Peach Pastel (#F5A97F) - subheadings and decorative elements
- Pure White (#FFFFFF) - text blocks and forms
- Dark Graphite (#1D1D1D) - footer and menu
*/

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #102542;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%; /* Ensure full width */
    position: relative; /* For proper overflow handling */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2BF9B5;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F5A97F;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2BF9B5;
}

h3 {
    font-size: 1.5rem;
    color: #F5A97F;
}

p {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: #2BF9B5;
    color: #102542;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #2BF9B5;
}

.btn:hover {
    background-color: transparent;
    color: #2BF9B5;
}

.btn-secondary {
    background-color: transparent;
    color: #2BF9B5;
}

.btn-secondary:hover {
    background-color: #2BF9B5;
    color: #102542;
}

/* Header Styles */
.site-header {
    background-color: #1D1D1D;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2BF9B5;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: #2BF9B5;
    color: #102542 !important;
    padding: 8px 20px !important;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: #F5A97F;
    color: #1D1D1D !important;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(16, 37, 66, 0.8), rgba(16, 37, 66, 0.9)), url('img/SpZxFt.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #F5A97F;
    animation: fadeInUp 1s ease-out;
}

.hero .btn {
    animation: fadeIn 1.5s ease-out;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Benefits Section */
.benefits {
    background-color: #0d1d36;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(43, 249, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BF9B5;
    font-size: 2rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15%;
    width: 30%;
    height: 2px;
    background-color: #2BF9B5;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2BF9B5;
    color: #102542;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Pricing Section */
.pricing {
    background-color: #0d1d36;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    padding: 2rem;
    background-color: rgba(29, 29, 29, 0.5);
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2BF9B5;
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    display: block;
    margin: 0 2rem 2rem;
    text-align: center;
}

.featured {
    transform: scale(1.05);
    border: 2px solid #2BF9B5;
    position: relative;
}

.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2BF9B5;
    color: #102542;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 8px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 5rem;
    color: rgba(43, 249, 181, 0.2);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    padding: 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 a {
    display: block;
    padding: 1.5rem;
    color: #2BF9B5;
    text-decoration: none;
    position: relative;
}

.toggle-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item:target h3 .toggle-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item:target .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info ul {
    margin-top: 1.5rem;
}

.contact-info ul li {
    margin-bottom: 1rem;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color:#f5a97f;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2BF9B5;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* Footer Styles */
.site-footer {
    background-color: #1D1D1D;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul,
.footer-legal ul {
    margin-top: 1rem;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-contact address {
    font-style: normal;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1D1D1D;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-text {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thank-you h1 {
    color: #2BF9B5;
    margin-bottom: 1.5rem;
}

.thank-you p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Policy Pages */
.policy-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.policy-content h2 {
    text-align: left;
    margin-top: 3rem;
}

.policy-content h2::after {
    left: 0;
    transform: none;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    padding-left: 2rem;
    list-style-type: disc;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .step::after {
        display: none;
    }
    
    .featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-bottom: 1rem;
    }
    
    /* Ensure all content fits within the viewport width */
    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Further fix for mobile horizontal scrolling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
} 