body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f8f9ff;
  color: #1a1a1a;
}
 h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
}

.highlight {
  color: #0077cc;
}

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


/* Guide Section Styles */
.guide-section {
    /* Background and spacing */
    background: linear-gradient(135deg, #1e3a8a, #2a4cb8);
    padding: 80px 0;
    min-height: 100vh;
}

/* Steps Grid Layout */
.steps-grid {
    /* Grid layout with 3 columns */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
}

/* Responsive Design - Tablet View */
@media (max-width: 1200px) {
    .steps-grid {
        /* Adjust grid for smaller screens */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

/* Responsive Design - Mobile View */
@media (max-width: 768px) {
    .steps-grid {
        /* Single column layout for mobile */
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
}

/* Mobile Layout Adjustments */
@media (max-width: 768px) {
    .steps-grid {
        /* Single column layout */
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .step-card {
        /* Mobile card padding */
        padding: 20px;
    }
    
    .step-content {
        /* Mobile content padding */
        padding: 15px;
    }
}

/* Step Card Styles */
.step-card {
    /* Card background and border */
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #3b82f6;
    border-radius: 15px;
    padding: 15px;
    
    /* Animations and transitions */
    transition: all 0.3s ease;
    position: relative;
    min-height: 160px;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(0.2s * var(--i));
    cursor: pointer;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-height: 100px;
    justify-content: flex-start;
}

.step-card h3 {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.2;
    padding-right: 50px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}

.step-description {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    padding-right: 50px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}



.step-card h3 {
    margin: 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */


/* Enhanced Personas Section */
/* Enhanced Personas Section */
/* Enhanced Personas Section */
/* Enhanced Personas Section */
.personas-section {
    background: transparent;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.personas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(103, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}


/* Grid Layout - 4 cards in a row */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    padding: 0;
}

.persona-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 0px rgba(255, 255, 255, 0.2) inset;
    backdrop-filter: blur(20px);
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.persona-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 1px 0px rgba(255, 255, 255, 0.3) inset;
    border-color: rgba(255, 255, 255, 0.4);
}

.persona-card:hover::before {
    opacity: 1;
}

.persona-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
}

.persona-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
    transition: all 0.6s ease;
}

.persona-card:hover .persona-image {
    transform: scale(1.1);
    filter: brightness(0.6) contrast(1.2) saturate(1.3);
}

.persona-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px;
    z-index: 3;
    color: #ffffff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
    justify-content: flex-end;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(0, 0, 0, 0.7) 70%, 
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.6s ease;
}

.persona-card:hover .persona-text {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.4) 30%, 
        rgba(0, 0, 0, 0.8) 70%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(15px);
}

.persona-text h3 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.persona-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    font-family: 'IBM Plex Serif', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.persona-card:hover .persona-text p {
    transform: translateY(0);
    opacity: 1;
}

/* REMOVED: Floating Yellow Circle Elements */

/* REMOVED: Floating Yellow Circle Elements */
/* The ::after pseudo-element that created the yellow circle has been removed */

/* Language Toggle */
.lang {
    transition: all 0.3s ease;
}

.fade {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .personas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .persona-card {
        height: 450px;
    }
    
    .persona-text {
        padding: 30px 20px;
        min-height: 200px;
    }
    
    .persona-text h3 {
        font-size: 1.4rem;
    }
    
    .persona-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .personas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .persona-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .personas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .persona-card {
        height: 400px;
    }
    
    .persona-text {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .persona-text h3 {
        font-size: 1.5rem;
    }
    
    .persona-text p {
        font-size: 1rem;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.persona-card {
    animation: none;
}

.persona-card:nth-child(2) {
    animation-delay: -2s;
}

.persona-card:nth-child(3) {
    animation-delay: -4s;
}

.persona-card:nth-child(4) {
    animation-delay: -6s;
}

/* Scroll Animation */
.persona-card.animate {
    opacity: 1;
    transform: translateY(0);
}






/* Section 1: Results Section */

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    top: 40%;
    right: 30%;
    animation-delay: -1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    bottom: 20%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Main Section */
.results-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #264877ff 100%);
    padding: 3rem;
    margin:2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.results-section h2 {
    color: #ffffff;
    text-align: center;
}
.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(95, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 47, 185, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.results-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255, 255, 255, 0.03) 100px
        ),
        repeating-linear-gradient(
            180deg,
            transparent,
            transparent 98px,
            rgba(255, 255, 255, 0.03) 100px
        );
    pointer-events: none;
    z-index: 1;
}

/* Title Styles */


/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 320px;
    animation: slideInUp 0.8s ease-out forwards;
    animation-delay: calc(0.2s * var(--i));
    opacity: 0;
    transform: translateY(60px);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.15),
        0 15px 30px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.feature-card:hover .icon-circle::before {
    opacity: 1;
}

.icon-circle i {
    font-size: 32px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-circle i {
    transform: rotateY(180deg);
}

/* Typography */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

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

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-section {
        margin: 0.5rem;
        padding: 0rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    .feature-card {
        padding: 30px 25px;
        min-height: 280px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .features-grid {
        margin-top: 50px;
    }
}


/* Section 2: Guide Section */
.guide-section {
    background: linear-gradient(135deg, #0b1944, #1e3a8a);
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}

.guide-section .sub-title {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.2s;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding: 0 20px;
}

.step-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 35px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: calc(0.2s * var(--i));
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #808080;
    transform: perspective(1000px) rotateX(20deg) rotateY(10deg);
    transition: all 0.4s ease;
    padding: 12px 24px;
}

.step-card:hover .step-number {
    transform: perspective(1000px) rotateX(20deg) rotateY(10deg) translateZ(20px);
}

.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.4;
    min-height: 80px;
    display: flex;
    align-items: flex-start;
}

.step-description {
    margin-top: auto;
}

.step-descrip.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0;
    padding: 0;
    width: 40px;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.step-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
margin: 0;
}

.cta-section {
text-align: center;
margin-top: 80px;
}

.cta-button {
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
color: white;
font-size: 1.2rem;
font-weight: 700;
padding: 18px 50px;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
animation: pulse 2s infinite;
    font-weight: 700;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .sub-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card,
    .step-card {
        padding: 25px 20px;
    }
    
    .results-section,
    .guide-section {
        padding: 80px 0;
    }
    
    .step-number {
        font-size: 3rem;
        top: 15px;
        right: 15px;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.8rem;
    }
    
    .feature-card h3,
    .step-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p,
    .step-card p {
        font-size: 0.95rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
}