/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* Default text color */
    line-height: 1.6;
}

/* Custom Colors */
:root {
    --dark-primary: #004d40; /* Dark Teal */
    --dark-secondary: #2c2c2c; /* Dark Gray for sections */
    --dark-tertiary: #1a1a1a; /* Even darker for alternating sections */
    --light-green: #a7ffeb; /* Light Mint/Teal for accents */
    --accent-orange: #ffb300; /* Amber for highlights */
    --white: #ffffff;
    --light-gray: #e0e0e0;
    --dark-gray-text: #333333; /* For contrast if needed, but mostly dark theme */
}

/* Ensure standard text color is visible */
p, span, li, a {
    color: var(--light-gray); /* Standard text color for readability */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white); /* Headings stand out */
}

/* Header */
header {
    background-color: var(--dark-tertiary) !important; /* Ensure dark background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1030; /* Above other content */
}

.logo-img {
    height: 40px;
    width: auto;
}

.text-light-green {
    color: var(--light-green) !important;
}

/* Section Titles */
.section-title {
    color: var(--light-green);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding-top: 70px; /* Offset for fixed header */
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.hero-section h2 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

/* Custom Button Primary */
.custom-btn-primary {
    background-color: var(--light-green);
    border-color: var(--light-green);
    color: var(--dark-primary);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
}

/* Feature Cards */
.feature-card {
    height: 100%;
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* How It Works Section */
.bg-dark-secondary {
    background-color: var(--dark-secondary);
}

.bg-dark-tertiary {
    background-color: var(--dark-tertiary);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* App Gallery */
.vertical-img {
    width: 100%;
    height: 300px; /* Fixed height for vertical images */
    object-fit: cover; /* Crop to fit */
    border: 2px solid var(--light-green);
}

@media (max-width: 767.98px) {
    .vertical-img {
        height: 250px;
    }
}

/* Testimonials */
.testimonial-card {
    background-color: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

/* Footer */
footer {
    background-color: var(--dark-tertiary) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: var(--light-gray);
}

.footer a:hover {
    color: var(--light-green);
}

.hover-light-green:hover {
    color: var(--light-green) !important;
}

.border-bottom-dark {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-top-dark {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050; /* Above modals */
    border-top: 1px solid var(--light-green);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-banner .btn-outline-light {
    border-color: var(--light-green);
    color: var(--light-green);
}

.cookie-banner .btn-outline-light:hover {
    background-color: var(--light-green);
    color: var(--dark-primary);
}

/* Cookie Modal */
#cookie-settings-modal .modal-content {
    border: 1px solid var(--light-green);
}

#cookie-settings-modal .form-check-input:checked {
    background-color: var(--light-green);
    border-color: var(--light-green);
}

#cookie-settings-modal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(167, 255, 235, 0.25);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h2 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section {
        height: 80vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-banner .d-flex.flex-column.flex-sm-row {
        width: 100%;
    }

    .cookie-banner .btn {
        width: 100%;
    }
}
/* Styles for the .policyScopeWrap container */
.policyScopeWrap {
    padding: 3rem 1.5rem; /* Top/bottom padding and side padding */
    max-width: 900px; /* Max width for readability */
    margin-left: auto;
    margin-right: auto;
    background-color: var(--dark-tertiary); /* Background to distinguish content */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    color: var(--light-gray); /* Default text color within the wrap */
}

/* Heading styles within .policyScopeWrap */
.policyScopeWrap h1 {
    font-size: 2.2rem; /* Moderate H1 size */
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light-green); /* Heading color */
    line-height: 1.2;
}

.policyScopeWrap h2 {
    font-size: 1.8rem; /* Moderate H2 size */
    margin-top: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--white); /* Heading color */
    line-height: 1.3;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Moderate H3 size */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-gray); /* Heading color */
    line-height: 1.4;
}

.policyScopeWrap h4 {
    font-size: 1.3rem; /* Moderate H4 size */
    margin-top: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--light-gray); /* Heading color */
    line-height: 1.5;
}

.policyScopeWrap h5 {
    font-size: 1.1rem; /* Moderate H5 size */
    margin-top: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--light-gray); /* Heading color */
    line-height: 1.6;
}

/* Paragraph styles within .policyScopeWrap */
.policyScopeWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Space below paragraphs */
    line-height: 1.7; /* Improved readability */
    color: var(--light-gray); /* Paragraph text color */
}

/* Unordered list styles within .policyScopeWrap */
.policyScopeWrap ul {
    list-style: disc; /* Standard disc bullet points */
    margin-left: 1.5rem; /* Indent list items */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 0; /* No extra padding on the list itself */
}

/* List item styles within .policyScopeWrap */
.policyScopeWrap li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Improved readability */
    color: var(--light-gray); /* List item text color */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .policyScopeWrap {
        padding: 2rem 1rem; /* Adjust padding for smaller screens */
    }

    .policyScopeWrap h1 {
        font-size: 1.8rem; /* Smaller H1 for mobile */
    }

    .policyScopeWrap h2 {
        font-size: 1.5rem; /* Smaller H2 for mobile */
    }

    .policyScopeWrap h3 {
        font-size: 1.3rem; /* Smaller H3 for mobile */
    }

    .policyScopeWrap p,
    .policyScopeWrap li {
        font-size: 0.95rem; /* Slightly smaller text for mobile */
    }

    .policyScopeWrap ul {
        margin-left: 1rem; /* Reduce list indent for mobile */
    }
}
