.btnelement { color: red; }

/* Common Styles for All Pages */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.is-wrapper {
    display: block;
}

/* Body Styles */
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: hsl(0 0% 100%);
    color: hsl(0 0% 10%);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

p, td, li, label {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, hsl(244 100% 69%) 0%, hsl(210 100% 66%) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(108, 99, 255, 0.35);
}

/* Card Styles */
.card {
    background: white;
    border-radius: 1rem;
    border: 1px solid hsl(240 14% 92%);
    overflow: hidden;
}

/* Layout Styles */
.section-wrapper {
    margin: 0 auto;
    max-width: 1920px;
}

.content-wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
}

.inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.inner-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, hsl(244, 100%, 69%) 0%, hsl(0, 0%, 100%) 100%);
    padding: 82px 0;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 132px 0;
    }
}

/* Hero Overlay Styles */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 40%);
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.2;
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 40%);
}

.hero-overlay-2 {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 100px 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 40%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 100px 100px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Typography */
h1, .hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    h1, .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    h1, .hero-title {
        font-size: 48px;
    }
}

h2, .section-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    h2, .section-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    h2, .section-title {
        font-size: 48px;
    }
}

h3, .module-title {
    font-size: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    h3, .module-title {
        font-size: 24px;
    }
}

p {
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    p {
        font-size: 20px;
    }
}

/* CTA/Final Section */
.cta-section, .final-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(244, 100%, 69%) 100%);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .cta-section, .final-section {
        padding: 200px 0 128px 0;
    }
}

.cta-section::before, .final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
}

/* Icon Styles */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 2;
}
