:root {
    /* Color palette */
    --site-background: #FFFFFF;
    --main-text-color: #000000;
    --q1-text-color: #333333;
    --q1-cursor-color: #555555;
    --header-bg: rgba(255, 255, 255, 0.85);
    --footer-bg: #f0f0f0;
    --footer-text: #555555;
    --section-border: #dddddd;
    --accent-pink: #FF005A;
    --accent-orange: #F27405;
    --accent-blue: #105fbb;
    --accent-rouge: #f60365;
    
    /* Gradient Colors (not currently used on body directly based on last request) */
    --gradient-color-start: #DDDDDD; /* Example: Dark Grey */
    --gradient-color-middle: #AAAAAA; /* Example: Mid Grey */
    --gradient-color-end: #105fbb;   /* Example: Lighter Grey */ 
}
.strong-pp {
    color: var(--accent-orange);
}

.strong-pm{
    color: var(--accent-rouge);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: var(--site-background);   */
    background-image: linear-gradient(to bottom right, var(--gradient-color-start), var(--gradient-color-middle), var(--gradient-color-end));
    color: var(--main-text-color);
    line-height: 1.6;
}

header {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 50px; 
    background-color: var(--header-bg); /* Light header background */
    z-index: 1000; backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--section-border);
}

.logo-container { width: 500px; height: 124px; position: relative; margin-left: -50px; }
.logo-actual { width: 100%; height: 100%; position: absolute; top: 0; left: 0; display: block; object-fit: contain; }

.reveal-on-load { opacity: 0; transform: translateY(20px); }
.reveal-on-load.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }

nav a.nav-link {
    color: var(--main-text-color); text-decoration: none; margin-left: 25px;
    font-size: 1em; font-weight: 500; transition: color 0.3s ease;
}

#logoImage.revealed { transition-delay: 0.1s; }
nav a.nav-link:nth-child(1).revealed { transition-delay: 0.3s; }
nav a.nav-link:nth-child(2).revealed { transition-delay: 0.4s; }
nav a.nav-link:nth-child(3).revealed { transition-delay: 0.5s; }
nav a.nav-link:nth-child(4).revealed { transition-delay: 0.6s; }
nav a.nav-link:nth-child(5).revealed { transition-delay: 0.7s; }
nav a.nav-link:nth-child(6).revealed { transition-delay: 0.8s; }
nav a.nav-link:hover,
nav a.nav-link:focus {
    color: var(--accent-pink);
}

main { padding-top: 150px; width: 100%; }

section {
    width: 100%; padding-top: 60px; padding-bottom: 60px;
    min-height: 20vh; border-bottom: 1px solid var(--section-border);
}
section:last-of-type { border-bottom: none; }

.section-content {
    max-width: 960px; margin-left: auto; margin-right: auto;
    padding-left: 20px; padding-right: 20px; text-align: left;
}

#hero {
    padding: 0; min-height: calc(100vh - 150px);
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start; text-align: center;
    overflow: hidden; transition: min-height 0.7s ease-in-out, padding 0.7s ease-in-out;
}
#hero.collapsed { min-height: 0 !important; height: 0 !important; padding: 0 !important; border-bottom: none !important; }

#q1.typing-text-q1 {
    color: var(--accent-blue);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6em;
    font-weight: bold;
    line-height: 1.3;
    white-space: pre-wrap;
    margin-top: 10vh;
    display: inline-block;
    text-align: center; /* q1 text is centered */
    opacity: 0;
    transition: opacity 0.5s ease-out;
    text-shadow: 2px 2px 4px #7589c7;
}

#q1.typing-text-q1.blinking-text { animation: textBlinkAnimation 0.4s linear 2; }
#q1.typing-text-q1::after { 
    content: '_'; opacity: 0; animation: blink 1s step-start 0s infinite; 
    color: var(--q1-cursor-color);
    margin-left: 2px; display: inline; 
    font-family: Arial, Helvetica, sans-serif;
}
#q1.typing-text-q1.hide-cursor::after { display: none; }

@keyframes blink { 50% { opacity: 1; } }
@keyframes textBlinkAnimation { 0%, 49.9% { opacity: 1; } 50%, 99.9% { opacity: 0.2; } 100% { opacity: 1; } }

section h2 {
    color: #105fbb;
    font-size: 3em; margin-bottom: 25px;
    padding-bottom: 10px; display: inline-block;
}

h3:not(#q1) {
    font-weight: 600; margin-bottom: 20px;
    font-size: 2em; color: #000000;
}
h1 { font-size: 3.5em; color: var(--accent-pink); font-weight: 600; margin-bottom: 20px; }

section p, section ul { 
    margin-bottom: 15px; font-size: 1.3em; 
    color: #333333; 
}
section ul { list-style-position: outside; padding-left: 20px; }
section ul li { margin-bottom: 8px; }

section a { color: var(--accent-blue); text-decoration: none; transition: color 0.3s ease; }
section a:hover { text-decoration: underline; color: var(--accent-pink); }

footer { 
    width: 100%; text-align: center; padding: 30px 50px; 
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 0.9em; 
    border-top: 1px solid var(--section-border);
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(200, 200, 200, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
img:not(#logoImage) {
  border: 1px solid var(--accent-blue);
}
.fine-print {
    font-size: 0.9rem;
    color: #333;
}
.pricing-item {
    font-weight: 600; margin-bottom: 20px;
    font-size: 1em; color: var(--accent-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        border-bottom: 1px solid var(--section-border);
    }

    .logo-container {
        width: 80%;
        max-width: 280px;
        height: auto;
        margin-left: 0;
        margin-bottom: 15px; 
        position: relative;   
        z-index: 10;          
    }

    .logo-actual { 
        display: block;
        width: 100%;
        height: auto;
        max-height: 80px;
        object-fit: contain;
    }
    
    nav#mainNav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 55px; 
        z-index: 5; 
    }

    nav a.nav-link {
        margin-left: 0;
        margin-bottom: 8px;
        font-size: 1em;
        padding: 0px 0px;
        width: 100%;
    }

    nav a.nav-link:last-child {
        margin-bottom: 0;
    }

    main {
        padding-top: 300px; 
    }

    section { padding-left: 15px; padding-right: 15px; }
    .section-content { max-width: 100%; padding-left: 0; padding-right: 0; }
    #hero { align-items: center; padding-left: 15px; padding-right: 15px; min-height: calc(100vh - 250px); }
    #q1.typing-text-q1 { font-size: 2em; margin-top: 5vh; }
    
    h1 { font-size: 2.2em; }
    section h2 { font-size: 1.8em; }
    h3:not(#q1) { font-size: 1.4em; }
    section p, section ul { font-size: 1em; }
}

/* Styles for images that will open in modal (from previous addition) */
.clickable-modal-img {
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block; 
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 100%; 
    height: auto; 
}
.clickable-modal-img:hover {
    opacity: 0.8;
}
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    padding-top: 60px; box-sizing: border-box;
}
.modal-content {
    margin: auto; display: block; width: auto;  height: auto; 
    max-width: 90%; max-height: 85vh; object-fit: contain;
    animation-name: zoom; animation-duration: 0.4s;
}
#modalCaption {
    margin: 15px auto; display: block; width: 80%; max-width: 700px;
    text-align: center; color: #ccc; padding: 10px 0; height: auto; 
}
.modal-close-button {
    position: absolute; top: 15px; right: 35px; color: #f1f1f1;
    font-size: 40px; font-weight: bold; transition: 0.3s;
}
.modal-close-button:hover,
.modal-close-button:focus {
    color: #bbb; text-decoration: none; cursor: pointer;
}
@keyframes zoom { from {transform: scale(0.8)} to {transform: scale(1)} }
@media (max-width: 700px){
    .modal-content { max-width: 95%; }
    .modal-close-button { top: 10px; right: 25px; font-size: 30px; }
}