/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-green: #10b981;
    --emerald-green-dark: #059669;
    --emerald-green-light: #34d399;
    --emerald-green-glow: rgba(16, 185, 129, 0.3);
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #111111;
    --dark-bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--emerald-green-glow);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-green), var(--emerald-green-light));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--emerald-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Sections */
.section {
    display: none;
    min-height: 100vh;
    padding: 100px 0 50px;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 8px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-green-light) 50%, var(--emerald-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--emerald-green-glow);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--emerald-green-light);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-dark));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--emerald-green-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald-green);
    border: 2px solid var(--emerald-green);
}

.btn-secondary:hover {
    background: var(--emerald-green);
    color: white;
    transform: translateY(-2px);
}

/* Content Blocks */
.content-block {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--emerald-green-light);
    font-weight: 500;
    font-size: 1.15rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--emerald-green);
    border-radius: 6px;
    margin: 1.5rem 0;
}

.pillar-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--emerald-green);
    box-shadow: var(--shadow-glow);
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin: 2rem 0 1rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-green);
    box-shadow: var(--shadow-glow);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--emerald-green);
    transform: translateY(-3px);
}

.value-card h4 {
    color: var(--emerald-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
}

/* Education Path */
.education-path {
    margin-top: 2rem;
}

.path-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.path-step:hover {
    border-color: var(--emerald-green);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--emerald-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--dark-bg-secondary);
    border-left: 3px solid var(--emerald-green);
    border-radius: 6px;
    color: var(--text-secondary);
}

.feature-list li strong {
    color: var(--emerald-green);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--emerald-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.service-card h4 {
    color: var(--emerald-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

/* STGF Education */
.stgf-education {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.education-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.education-card:hover {
    border-color: var(--emerald-green);
    transform: translateY(-5px);
}

.education-card h4 {
    color: var(--emerald-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.education-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-green), var(--emerald-green-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::after {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.tech-card h4 {
    color: var(--emerald-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vertical Cards Container */
.vertical-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.community-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.community-card:hover {
    transform: translateY(-8px);
    border-color: var(--emerald-green);
    box-shadow: var(--shadow-glow);
}

.community-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--emerald-green-glow));
}

.community-card h3 {
    color: var(--emerald-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.community-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.community-link {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.community-link:hover {
    color: var(--emerald-green-light);
    transform: translateX(5px);
}

/* Expandable Cards - Vertical Layout */
.expandable-card {
    background: var(--dark-bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.expandable-card:hover {
    border-color: var(--emerald-green);
    box-shadow: 0 4px 20px var(--emerald-green-glow);
    transform: translateY(-2px);
}

.expandable-card.active {
    border-color: var(--emerald-green);
    box-shadow: 0 6px 30px var(--emerald-green-glow);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    gap: 1.5rem;
    min-height: 120px;
}

.card-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.card-header .community-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px var(--emerald-green-glow));
}

.card-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-header h3 {
    color: var(--emerald-green);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-tagline {
    color: var(--emerald-green-light);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 700;
    opacity: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    padding: 0.5rem 0;
    border-left: 3px solid var(--emerald-green);
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.expand-icon {
    font-size: 2.5rem;
    color: var(--emerald-green);
    font-weight: 300;
    transition: transform 0.4s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
}

.expandable-card:hover .expand-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--emerald-green-light);
}

.expandable-card.active .expand-icon {
    transform: rotate(45deg);
    background: rgba(16, 185, 129, 0.3);
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 2rem;
    background: rgba(16, 185, 129, 0.03);
}

.expandable-card.active .card-content {
    max-height: 5000px;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.card-content h4 {
    color: var(--emerald-green-light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 600;
}

.card-content .section-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.card-content .feature-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.card-content .feature-list li {
    padding: 1rem 1rem 1rem 2rem;
    margin-bottom: 0.75rem;
    background: var(--dark-bg);
    border-left: 3px solid var(--emerald-green);
    border-radius: 6px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    transition: all 0.3s ease;
}

.card-content .feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0.5rem;
    color: var(--emerald-green);
    font-weight: bold;
}

.card-content .feature-list li:hover {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: var(--emerald-green-light);
    transform: translateX(5px);
}

.card-content .feature-list li strong {
    color: var(--emerald-green);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

/* Join ARCOS Section */
.join-section {
    margin-top: 4rem;
    background: var(--dark-bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.join-header {
    text-align: center;
    margin-bottom: 3rem;
}

.join-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.join-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--emerald-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.form-group label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 4px var(--emerald-green-glow);
    background: rgba(16, 185, 129, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

.file-hint {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.btn-join {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 1rem;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: var(--dark-bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--emerald-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-bg-secondary);
        width: 100%;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

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

    .highlights-grid,
    .values-grid,
    .service-grid,
    .stgf-education,
    .tech-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .vertical-cards-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .card-header {
        padding: 1.5rem;
        min-height: 100px;
    }

    .card-header .community-icon {
        font-size: 2.5rem;
    }

    .card-header h3 {
        font-size: 1.4rem;
    }

    .card-tagline {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }

    .expandable-card.active .card-content {
        padding: 1.5rem;
    }

    .card-content .feature-list li {
        padding: 0.75rem 0.75rem 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .path-step {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .join-section {
        padding: 2rem 1.5rem;
    }

    .join-title {
        font-size: 1.8rem;
    }

    .join-subtitle {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .btn-join {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--emerald-green);
    color: white;
}

