:root {
    --primary-color: #84658c;
    --primary-hover: #6d5273;
    --bg-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f9f9f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    
    /* Grid Background - Fixed to cover the whole viewport */
    background-image: 
        linear-gradient(rgba(132, 101, 140, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(132, 101, 140, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    background-attachment: fixed; /* Ensures grid stays fixed while scrolling */
    
    /* Subtle animation for the background */
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Initially hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Header */
.header {
    background-color: transparent; /* Fully transparent */
    padding: 2rem 0; /* Increased padding for better spacing */
    position: relative; /* Changed from sticky to relative for better flow with grid */
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
    display: block;
    /* Optional: helps blend white background images with the page background */
    mix-blend-mode: multiply; 
}

/* Hero & Form */
.hero {
    padding: 40px 0 100px;
    text-align: center;
    background-color: transparent; 
}

.hero h1 {
    font-size: 3rem; /* Increased size */
    margin-bottom: 20px;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800; /* Extra bold */
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem; /* Larger text */
    margin-bottom: 40px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.info-block {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
}

.info-block h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.info-block u {
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 18px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin: 8px 0;
}

.check-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    line-height: 1;
}

/* Highlighter Effect */
.highlight {
    background: linear-gradient(120deg, rgba(255, 235, 59, 0.4) 0%, rgba(255, 235, 59, 0.4) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.5em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
    display: inline;
    padding: 0 2px;
}

/* Optional: Make it grow on hover if desired, or keep static */
/* .highlight:hover {
    background-size: 100% 88%;
} */

.form-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 500px;
    position: relative;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Extra Section */
.section {
    padding: 80px 0;
    background-color: transparent; /* Removed background to show grid */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.content-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper > p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.card {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent cards */
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(132, 101, 140, 0.15);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: transparent; /* Changed from #333 to transparent */
    color: var(--text-color); /* Changed from white to text color */
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(132, 101, 140, 0.1); /* Added subtle top border */
}
    text-align: center;
}
.info-lines p {
    margin: 8px 0;
}
.cta-block {
    max-width: 900px;
    margin: 24px auto 0;
    text-align: center;
}
