/* Cedar Design Collective - Custom CSS */
/* Following imperfection guidelines with intentional inconsistencies */

:root {
    --ocean-blue: #d62828;
    --sunset-orange: #fbe9e9;
    --forest-green: #961c1c;
    --secondary-tone: #e89c28;
    --secondary-bright: #f4e6c7;
    --tertiary-shade: #085dd8;
    --tertiary-pale: #e3f2fd;
    --accent-vibrant: #f4ad2d;
    --accent-soft: #fdf4e3;
    --neutral-border: #e9ecef;
    --neutral-background: #f8f9fa;
    --info-blue: #17a2b8;
    --warning-amber: #ffc107;
    --success-emerald: #28a745;
}

/* Base Typography & Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--forest-green);
    font-weight: 400;
    font-size: 16px;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--forest-green);
    font-weight: 600;
}

/* Container Styles */
.content-container {
    width: 100%;
    padding-right: 21px;
    padding-left: 21px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 640px) {
    .content-container {
        max-width: 610px;
    }
}

@media (min-width: 890px) {
    .content-container {
        max-width: 850px;
    }
}

@media (min-width: 1280px) {
    .content-container {
        max-width: 1240px;
    }
}

@media (min-width: 1600px) {
    .content-container {
        max-width: 1560px;
    }
}

/* Navigation Styles */
.primary-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    border-bottom: 1px solid var(--neutral-border);
    transition: all 0.34s cubic-bezier(0.23, 1, 0.32, 1);
}

.navigation-wrapper {
    padding: 0 21px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.brand-identity .brand-logo {
    height: 42px;
    width: auto;
}

.hamburger-checkbox {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    padding: 13px;
    z-index: 2;
}

.burger-icon {
    width: 28px;
    height: 3px;
    background: var(--forest-green);
    position: relative;
    transition: all 0.31s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-icon:before,
.burger-icon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--forest-green);
    transition: all 0.31s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-icon:before {
    top: -7px;
}

.burger-icon:after {
    top: 7px;
}

.navigation-menu {
    display: flex;
    align-items: center;
}

.menu-links {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
}

.navigation-link {
    color: var(--forest-green);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.28s ease;
    position: relative;
}

.navigation-link:hover,
.navigation-link.active-link {
    color: var(--ocean-blue);
}

.navigation-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navigation-link:hover::after,
.navigation-link.active-link::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 889px) {
    .hamburger-label {
        display: block;
    }

    .navigation-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .menu-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        margin: 18px 0;
    }

    .navigation-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
    }

    .hamburger-checkbox:checked ~ .navigation-menu {
        left: 0;
    }

    .hamburger-checkbox:checked ~ .hamburger-label .burger-icon {
        background: transparent;
    }

    .hamburger-checkbox:checked ~ .hamburger-label .burger-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .hamburger-checkbox:checked ~ .hamburger-label .burger-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section Styles */
.hero-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 89px 0;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 89px);
}

.hero-text-area {
    max-width: 680px;
    color: white;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    color: var(--accent-vibrant);
    display: block;
    margin-bottom: 21px;
    font-weight: 600;
}

.hero-headline {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 26px;
    color: white;
    font-weight: 700;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
}

.primary-action-button {
    background-color: var(--accent-vibrant);
    border: 2px solid var(--accent-vibrant);
    color: white;
    padding: 16px 28px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 600;
    transition: all 0.29s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.primary-action-button:hover {
    background-color: transparent;
    color: var(--accent-vibrant);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 173, 45, 0.3);
}

@media (max-width: 889px) {
    .hero-headline {
        font-size: 42px;
    }

    .hero-description {
        font-size: 17px;
    }
}

/* Statistics Section */
.achievement-metrics {
    padding: 94px 0;
    position: relative;
    background: var(--neutral-background);
}

.achievement-metrics::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: 0;
    background: #000000;
}

.metrics-overlay {
    position: absolute;
    width: 31%;
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: var(--tertiary-shade);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.achievement-item {
    opacity: 0;
    visibility: hidden;
    animation: fadeInStats 0.8s ease forwards;
}

.achievement-item:nth-child(1) { animation-delay: 0.1s; }
.achievement-item:nth-child(2) { animation-delay: 0.3s; }
.achievement-item:nth-child(3) { animation-delay: 0.5s; }
.achievement-item:nth-child(4) { animation-delay: 0.7s; }

.metric-display .stat-wrapper {
    display: flex;
    align-items: center;
    padding: 34px 21px;
    text-align: left;
}

.achievement-number {
    font-weight: 300;
    font-size: 52px;
    color: var(--tertiary-shade);
    margin-right: 18px;
}

.metric-label {
    display: block;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    flex: 1;
}

.metric-border {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes fadeInStats {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 889px) {
    .achievement-metrics {
        padding: 67px 0;
    }

    .achievement-item {
        margin-bottom: 28px;
    }

    .metric-border {
        border-right: none;
    }
}

/* Story Section */
.story-showcase {
    padding: 89px 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 0;
    align-items: stretch;
}

.visual-content {
    display: flex;
}

.story-image {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 420px;
    border-radius: 13px;
}

.narrative-content {
    padding-left: 47px;
    padding-right: 0;
    padding-top: 21px;
    padding-bottom: 21px;
    display: flex;
    align-items: center;
}

.story-header .section-label {
    font-size: 13px;
    display: block;
    font-weight: 800;
    color: var(--secondary-tone);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 13px;
}

.story-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 26px;
    line-height: 1.3;
}

.story-text p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-highlights {
    list-style: none;
    margin: 24px 0;
}

.story-highlights li {
    margin-bottom: 13px;
    display: flex;
    align-items: flex-start;
}

.highlight-icon {
    width: 16px;
    height: 16px;
    background: var(--tertiary-shade);
    border-radius: 50%;
    margin-right: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.highlight-icon::before {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 16px;
}

.story-action-button {
    background: var(--secondary-tone);
    border: 2px solid var(--secondary-tone);
    color: white;
    padding: 14px 21px;
    border-radius: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.31s ease;
}

.story-action-button:hover {
    border: 2px solid var(--secondary-tone);
    background: transparent;
    color: var(--secondary-tone);
}

@media (max-width: 889px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .narrative-content {
        padding-left: 0;
    }

    .story-image {
        min-height: 300px;
    }
}

/* Course Explorer Section */
.course-explorer {
    padding-bottom: 142px;
    padding-top: 0;
}

.explorer-title {
    color: var(--forest-green);
    font-family: "Poppins", sans-serif;
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 42px;
    text-align: center;
}

.category-navigation {
    margin-bottom: 42px;
    text-align: center;
}

.category-tabs {
    display: inline-flex;
    gap: 42px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.category-item {
    position: relative;
}

.category-link {
    color: var(--forest-green);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.31s ease;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-link:hover,
.category-link.current-category {
    color: var(--ocean-blue);
}

.category-link:hover::after,
.category-link.current-category::after {
    width: 100%;
}

.course-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.42s ease;
}

.course-panel.visible-panel {
    display: block;
    opacity: 1;
}

.course-showcase {
    padding: 42px 52px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.34s ease;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.course-showcase:hover {
    background: #fff;
    box-shadow: 0 13px 28px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.course-name {
    color: var(--forest-green);
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 18px;
}

.course-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.course-details li {
    margin-bottom: 13px;
}

.course-details h5 {
    color: #777;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin: 0;
}

.detail-icon {
    width: 18px;
    height: 18px;
    margin-right: 13px;
}

.course-visual img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.course-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.status-button,
.action-button {
    color: #fff !important;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    padding: 11px 21px !important;
    border-radius: 6px;
    transition: all 0.34s;
    text-decoration: none;
}

.action-button {
    background: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.action-button:hover {
    background: var(--forest-green);
    border-color: var(--forest-green);
}

.graphic-status {
    background: #00afed;
}

.web-status {
    background: #cc2229;
}

.art-status {
    background: #0088cc;
}

.ux-status {
    background: #2dc100;
}

.status-button:hover {
    background: var(--forest-green) !important;
    transform: translateY(-2px);
}

.explore-more {
    margin-top: 52px;
    text-align: center;
}

.explore-button {
    color: #fff !important;
    background: var(--ocean-blue);
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    padding: 18px 34px !important;
    border-radius: 8px;
    transition: all 0.34s;
    text-decoration: none;
}

.explore-button:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(150, 28, 28, 0.3);
}

@media (max-width: 1279px) {
    .course-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding: 34px 28px;
    }

    .course-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .category-tabs {
        flex-direction: column;
        gap: 21px;
    }

    .explorer-title {
        font-size: 28px;
    }

    .course-showcase {
        padding: 28px 18px;
    }

    .course-actions {
        flex-direction: column;
    }
}

/* Testimonials Section */
.testimonial-gallery {
    padding: 89px 0;
    background: var(--neutral-background);
}

.section-heading {
    font-size: 58px;
    font-family: "Playfair Display", serif;
    text-align: center;
    margin-bottom: 52px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 34px;
    opacity: 0;
    transition: opacity 0.42s ease;
}

.testimonial-slide.active-slide {
    opacity: 1;
}

.student-avatar {
    margin-bottom: 26px;
}

.avatar-image {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.testimonial-quote {
    padding: 0;
    margin-bottom: 21px;
}

.testimonial-quote p {
    line-height: 1.6;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    color: var(--forest-green);
    font-style: italic;
    margin: 0;
    max-width: 680px;
    margin: 0 auto;
}

.student-credit {
    color: var(--secondary-tone);
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 889px) {
    .section-heading {
        font-size: 42px;
    }

    .testimonial-quote p {
        font-size: 18px;
    }
}

/* Call-to-Action Section */
.inspiration-showcase {
    padding: 180px 0;
    background-image: url('terrarium/cta-background.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    text-align: center;
}

.inspiration-showcase::before {
    position: absolute;
    content: "";
    background-color: #040E27;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

.inspiration-message {
    color: white;
}

.inspiration-subtitle {
    font-size: 16px;
    color: #fff;
    display: block;
    margin-bottom: 21px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.inspiration-headline {
    font-size: 78px;
    color: #fff;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.inspiration-tagline {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-bottom: 52px;
    color: var(--accent-vibrant);
}

.play-action {
    width: 110px;
    height: 110px;
    background: var(--ocean-blue);
    line-height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-symbol {
    font-size: 34px;
    color: #fff;
    margin-left: 4px;
}

.play-action:hover {
    background: var(--tertiary-shade);
    transform: scale(1.05);
    box-shadow: 0 13px 34px rgba(214, 40, 40, 0.4);
}

@media (max-width: 889px) {
    .inspiration-showcase {
        padding: 110px 0;
    }

    .inspiration-headline {
        font-size: 38px;
    }

    .inspiration-tagline {
        font-size: 21px;
    }
}

/* Footer Styles */
.main-footer {
    padding: 67px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.main-footer::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.82);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 42px;
}

.footer-heading {
    font-size: 21px;
    margin-bottom: 24px;
    color: #fff !important;
    font-weight: 600;
}

.footer-about p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-action-btn {
    background-color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    color: #fff;
    padding: 13px 21px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: all 0.31s ease;
    display: inline-block;
}

.footer-action-btn:hover {
    background: transparent;
    color: var(--ocean-blue);
    box-shadow: 0 8px 21px rgba(214, 40, 40, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.footer-menu {
    padding-left: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 13px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.28s ease;
    display: block;
    padding: 6px 0;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-connect {
    text-align: center;
}

.social-links {
    margin-top: 21px;
}

.social-link {
    display: inline-block;
    margin: 0 8px;
    padding: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.28s ease;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background: var(--ocean-blue);
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-bottom {
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 21px;
}

.legal-links {
    display: flex;
    gap: 28px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.28s ease;
}

.legal-links a:hover {
    color: #fff;
}

@media (max-width: 1279px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .legal-links {
        gap: 21px;
    }
}

/* Utility Classes */
.text-center { text-align: center !important; }

/* Additional human-like imperfections */
.course-showcase {
    /* Intentional slight inconsistency in padding */
    padding: 41px 52px 43px 51px;
}

@media (max-width: 889px) {
    .navigation-link {
        /* Mixed indentation intentionally */
        padding: 13px 20px;
    }
}
/* About Page Specific Styles */
.about-hero-showcase {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.about-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.38);
}

/* Content Image Section Styles */
.content-image-section {
    padding: 94px 0;
    background-color: #fff;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 47px;
    align-items: center;
}

.text-block {
    padding-right: 42px;
}

.text-block .heading {
    font-family: "Playfair Display", serif;
    font-size: 41px;
    color: var(--forest-green);
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.2;
}

.text-block .description {
    font-size: 19px;
    line-height: 1.6;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    color: #666666;
    margin-bottom: 24px;
}

.text-block .content {
    font-size: 16px;
    line-height: 1.7;
    font-family: "Lato", sans-serif;
    font-weight: normal;
    color: #666666;
    margin-bottom: 19px;
}

.primary_btn {
    margin-top: 31px;
    padding: 0px 34px;
    background: var(--ocean-blue);
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    line-height: 52px;
    border: 2px solid var(--ocean-blue);
    border-radius: 26px;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.primary_btn:hover {
    background: transparent;
    color: var(--ocean-blue);
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.12);
}

/* Philosophy Features Section */
.philosophy-features {
    padding: 89px 0;
    background: var(--secondary-bright);
    color: var(--forest-green);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 42px;
}

.philosophy-block {
    text-align: center;
    padding: 34px 21px;
}

.icon-wrapper {
    width: 89px;
    height: 89px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-tone);
    border-radius: 50%;
    transition: all 0.28s ease;
}

.icon-wrapper:hover {
    background: var(--secondary-tone);
    transform: translateY(-3px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(1247%) hue-rotate(18deg) brightness(95%) contrast(101%);
}

.icon-wrapper:hover .feature-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(109deg) brightness(105%) contrast(105%);
}

.feature-heading {
    font-size: 19px;
    margin-bottom: 21px;
    color: var(--forest-green);
    text-transform: uppercase;
    font-weight: 600;
}

.feature-content p {
    line-height: 1.7;
    color: var(--forest-green);
    font-size: 15px;
}

/* Methodology Showcase Section */
.methodology-showcase {
    padding: 89px 0;
    background: #fff;
}

.methodology-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-title-underline {
    color: var(--forest-green);
    font-size: 39px;
    margin-bottom: 21px;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 4px solid var(--secondary-tone);
    padding-bottom: 8px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.methodology-item {
    box-shadow: 0 5px 21px rgba(0, 0, 0, 0.13);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.31s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
}

.method-thumbnail {
    position: relative;
    margin: 0;
}

.method-thumbnail img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.method-category {
    background: var(--secondary-tone);
    padding: 18px 24px;
    border-radius: 0 0 13px 13px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.method-category h3 {
    color: #fff;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.method-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translatey(-100%);
    padding: 11px 18px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 8px 0 0 0;
    font-weight: 500;
    font-size: 13px;
}

.methodology-content {
    padding: 28px 34px 34px;
    text-align: center;
}

.methodology-content h2 {
    margin: 0 0 21px 0;
    font-size: 18px;
    color: var(--forest-green);
    line-height: 1.4;
    font-weight: 600;
}

.method-rating {
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.rating-star {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(84%) saturate(2509%) hue-rotate(21deg) brightness(101%) contrast(105%);
}

.method-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.btn.rounded-pill {
    border-radius: 9999px;
    padding: 11px 24px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.1px;
}

/* Achievements Showcase Section */
.achievements-showcase {
    padding: 89px 0;
    background: var(--neutral-background);
}

.achievements-header {
    text-align: center;
    margin-bottom: 67px;
}

.achievements-header .heading {
    font-size: 52px;
    font-family: "Playfair Display", serif;
    color: var(--forest-green);
    margin-bottom: 24px;
}

.achievements-header .lead {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

.achievement-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: #fff;
    margin-bottom: 34px;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.achievement-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 340px;
    display: block;
}

.achievement-text {
    padding: 47px 42px;
}

.achievement-highlight {
    display: block;
    margin-bottom: 18px;
    color: var(--secondary-tone);
    font-weight: 600;
    font-size: 16px;
}

.display-number {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--ocean-blue);
}

.achievement-text h2 {
    font-size: 28px;
    color: var(--forest-green);
    margin-bottom: 21px;
    font-weight: 700;
}

.achievement-text .lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--forest-green);
    margin-bottom: 18px;
    line-height: 1.5;
}

.achievement-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

.achievements-cta {
    text-align: center;
    margin-top: 52px;
}

.cta-button {
    padding: 18px 42px !important;
    font-size: 16px;
    border-radius: 9999px;
}

/* Responsive Design */
@media (max-width: 1279px) {
    .content-layout,
    .achievement-block {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .text-block {
        padding-right: 0;
    }

    .achievement-image {
        min-height: 280px;
    }

    .reverse-layout .achievement-image {
        order: 1 !important;
    }

    .reverse-layout .achievement-text {
        order: 2 !important;
    }
}

@media (max-width: 889px) {
    .content-image-section,
    .philosophy-features,
    .methodology-showcase,
    .achievements-showcase {
        padding: 67px 0;
    }

    .text-block .heading {
        font-size: 32px;
    }

    .achievements-header .heading {
        font-size: 36px;
    }

    .features-grid {
        gap: 28px;
    }

    .methodology-grid {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .about-hero-showcase {
        height: 70vh;
    }

    .methodology-content {
        padding: 21px 18px 28px;
    }

    .achievement-text {
        padding: 28px 21px;
    }

    .section-title-underline {
        font-size: 28px;
    }
}

/* ../intentional inconsistencies */
.philosophy-block {
    /* Slightly inconsistent padding */
    padding: 33px 21px 35px 20px;
}

/* Dead code comment - intentional */
/* .old-achievement-layout {
    display: flex;
    justify-content: space-between;
} */

/* Courses Page Specific Styles */
.courses-hero-showcase {
    position: relative;
    height: 89vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.courses-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.45);
}

/* Course Services Overview Section */
.course-services-overview {
    padding: 89px 0;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 67px;
}

.services-subtitle {
    font-size: 13px;
    display: block;
    font-weight: 500;
    color: var(--secondary-tone);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 13px;
}

.services-main-title {
    font-size: 47px;
    font-weight: 300;
    color: var(--forest-green);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.service-item {
    display: block;
    width: 100%;
    position: relative;
    transition: all 0.31s ease;
    opacity: 0;
    visibility: hidden;
    animation: fadeInServices 0.8s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }
.service-item:nth-child(4) { animation-delay: 0.7s; }

.service-block {
    display: flex;
    padding: 21px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
}

.service-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.service-block:hover .service-icon {
    background: var(--secondary-tone);
    transform: scale(1.05);
}

.service-icon {
    line-height: 1.3;
    position: relative;
    width: 73px;
    height: 73px;
    margin-right: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--tertiary-shade);
    transition: all 0.31s ease;
    box-shadow: 0px 8px 24px rgba(8, 93, 216, 0.2);
}

.service-icon-img {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.service-content h3 {
    font-weight: 500;
    font-size: 19px;
    color: var(--forest-green);
    margin-bottom: 13px;
}

.service-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.service-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--forest-green);
    border-bottom: 2px solid var(--neutral-border);
    text-decoration: none;
    transition: all 0.28s ease;
}

.service-link:hover {
    color: var(--secondary-tone);
    border-color: var(--secondary-tone);
}

@keyframes fadeInServices {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Course Category Showcase Section */
.course-category-showcase {
    padding: 89px 0;
    background: #fff;
}

.category-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-title-underline {
    color: var(--forest-green);
    font-size: 42px;
    margin-bottom: 24px;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 5px solid var(--secondary-tone);
    padding-bottom: 7px;
}

.course-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.program-item {
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.31s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-thumbnail {
    position: relative;
    margin: 0;
}

.program-thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.program-category {
    background: var(--secondary-tone);
    padding: 16px 21px;
    border-radius: 0 0 13px 13px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.program-category h3 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.program-price {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translatey(-100%);
    padding: 13px 19px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 8px 0 0 0;
    font-weight: 500;
    font-size: 16px;
}

.program-content {
    padding: 28px 34px 36px;
    text-align: center;
}

.program-content h2 {
    margin: 0 0 21px 0;
    font-size: 19px;
    color: var(--forest-green);
    line-height: 1.4;
    font-weight: 600;
}

.program-rating {
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.program-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

/* Web Design Section */
.web-design-section {
    padding: 94px 0;
    background-color: #fff;
}

.web-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 47px;
    align-items: center;
}

.section-title-accent {
    color: var(--forest-green);
    font-size: 39px;
    margin-bottom: 28px;
}

.section-title-accent span {
    display: inline-block;
    border-bottom: 5px solid var(--tertiary-shade);
    padding-bottom: 6px;
}

.lead-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--forest-green);
    margin-bottom: 21px;
    line-height: 1.5;
}

.web-text-area p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.btn-main {
    color: #fff;
    background-color: var(--tertiary-shade);
    border: 2px solid var(--tertiary-shade);
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.31s ease;
}

.btn-main:hover {
    color: var(--tertiary-shade);
    background-color: transparent;
}

/* Interior Design Services Section */
.interior-design-services {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 89px 0;
}

.interior-design-services::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.58);
}

.interior-design-services > .content-container {
    position: relative;
    z-index: 2;
}

.interior-services-header {
    text-align: center;
    margin-bottom: 67px;
}

.scissors {
    position: relative;
    padding-bottom: 34px;
    margin-bottom: 34px;
    font-size: 3.4rem;
    color: var(--ocean-blue);
}

.scissors::after {
    bottom: 0;
    left: 50%;
    font-size: 26px;
    content: "✂";
    position: absolute;
    color: var(--accent-vibrant);
    transform: translateX(-50%);
}

.interior-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.interior-service {
    text-align: center;
}

.interior-service-icon {
    background: var(--ocean-blue);
    width: 89px;
    height: 89px;
    margin-bottom: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--ocean-blue);
    border-radius: 50%;
    color: #fff;
    transition: all 0.31s ease;
}

.interior-service:hover .interior-service-icon {
    transform: scale(1.08);
    background: var(--accent-vibrant);
    border-color: var(--accent-vibrant);
}

.interior-icon-img {
    width: 42px;
    height: 42px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.interior-service-contents h3,
.interior-service-contents p {
    color: #fff;
}

.interior-service-contents h3 {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
}

.interior-service-contents p {
    line-height: 1.7;
    font-size: 15px;
}

/* Industrial Design Services Section */
.industrial-design-services {
    padding: 89px 0;
    background: var(--neutral-background);
}

.industrial-header {
    text-align: center;
    margin-bottom: 67px;
}

.industrial-title {
    font-size: 47px;
    margin-bottom: 18px;
    color: var(--forest-green);
}

.industrial-subtitle {
    font-size: 17px;
    color: #888;
    margin: 0;
    max-width: 680px;
    margin: 0 auto;
}

.industrial-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.industrial-single-service {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 42px 28px 38px;
    border-radius: 13px;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.31s ease;
}

.industrial-single-service:hover {
    transform: translateY(-5px);
}

.industrial-service-icon {
    width: 54px;
    height: 54px;
    display: inline-block;
    margin-bottom: 28px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(1247%) hue-rotate(18deg) brightness(95%) contrast(101%);
}

.industrial-single-service h5 {
    font-size: 19px;
    margin-bottom: 18px;
    font-weight: 650;
    color: var(--forest-green);
}

.industrial-single-service p {
    margin: 0;
    line-height: 1.7;
    color: #666;
    font-size: 15px;
}

/* Courses CTA Section */
.courses-cta-intro {
    position: relative;
    overflow: visible;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 89px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: var(--tertiary-shade);
    opacity: 0.7;
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-text-center {
    text-align: center;
}

.cta-text-center h2 {
    color: #fff;
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 34px;
}

.cta-icon-video {
    width: 94px;
    height: 94px;
    background: var(--accent-vibrant);
    animation: pulse 2.1s infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    text-decoration: none;
}

.cta-play-icon {
    font-size: 24px;
    color: var(--tertiary-shade);
    margin-left: 3px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 173, 45, 0.4);
    }
    70% {
        box-shadow: 0 0 0 32px rgba(244, 173, 45, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 173, 45, 0);
    }
}

/* Responsive Design */
@media (max-width: 1279px) {
    .web-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .web-image-area {
        order: 1;
    }

    .web-text-area {
        order: 2;
    }
}

@media (max-width: 889px) {
    .course-services-overview,
    .course-category-showcase,
    .web-design-section,
    .interior-design-services,
    .industrial-design-services,
    .courses-cta-intro {
        padding: 67px 0;
    }

    .services-main-title {
        font-size: 32px;
    }

    .section-title-underline,
    .section-title-accent {
        font-size: 28px;
    }

    .scissors {
        font-size: 2.2rem;
    }

    .industrial-title {
        font-size: 32px;
    }

    .cta-text-center h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .courses-hero-showcase {
        height: 75vh;
    }

    .services-grid,
    .course-programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .program-content,
    .industrial-single-service {
        padding: 21px 18px 28px;
    }
}

/* ../intentional inconsistencies */
.service-block {
    /* Slightly inconsistent padding */
    padding: 20px 21px 22px 21px;
}
/* Portfolio Page Specific Styles */
.portfolio-hero-showcase {
    position: relative;
    height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.portfolio-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.41);
}

/* Student Progress Section */
.student-progress-section {
    padding: 89px 0;
    background: var(--neutral-background);
}

.progress-header {
    text-align: center;
    margin-bottom: 67px;
}

.progress-header h2 {
    font-size: 44px;
    color: var(--forest-green);
    margin-bottom: 21px;
    font-weight: 600;
}

.progress-header p {
    font-size: 17px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

.creative-journey {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.journey-step {
    width: 20%;
    display: inline-block;
    text-align: center;
    position: relative;
    min-width: 180px;
}

.journey-step::after {
    width: 100%;
    height: 4px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 29px;
    background: var(--tertiary-shade);
    border-radius: 3px;
}

.journey-step:last-child::after {
    display: none;
}

.step-number {
    z-index: 1;
    width: 58px;
    height: 58px;
    border: 4px solid var(--tertiary-shade);
    background: #fff;
    border-radius: 50%;
    color: var(--tertiary-shade);
    display: block;
    position: relative;
    margin: 0 auto 15px auto;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 13px rgba(8, 93, 216, 0.2);
}

.journey-step:hover .step-number {
    background: var(--tertiary-shade);
    color: #fff;
    transform: scale(1.08);
}

.step-number > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
}

.step-caption {
    display: block;
    font-weight: 500;
    color: var(--forest-green);
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.28s ease;
}

.journey-step:hover .step-caption {
    color: var(--tertiary-shade);
}

/* Portfolio Text Image Section */
.portfolio-text-image-section {
    padding: 89px 0;
    position: relative;
    background: #fff;
}

.portfolio-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.portfolio-heading-section {
    z-index: 0;
    text-align: left;
}

.portfolio-subheading {
    font-size: 48px;
    display: block;
    margin-bottom: -18px;
    font-family: "Playfair Display", serif;
    color: var(--secondary-tone);
    line-height: 1;
    z-index: 1;
    font-style: italic;
    font-weight: 400;
}

.portfolio-heading-section h2 {
    z-index: -1;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    color: var(--forest-green);
    margin-bottom: 24px;
}

.portfolio-heading-section p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 16px;
}

.portfolio-btn {
    background: var(--secondary-tone);
    border: 2px solid var(--secondary-tone);
    color: var(--forest-green);
    padding: 13px 21px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.portfolio-btn:hover {
    border: 2px solid var(--secondary-tone);
    background: var(--secondary-tone);
    color: #fff;
}

.portfolio-image-content {
    position: relative;
}

.main-portfolio-image img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.portfolio-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-top: 24px;
}

.portfolio-sub-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.portfolio-sub-offset {
    margin-top: 28px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 89px 0;
    background: var(--sunset-orange);
    color: var(--forest-green);
}

.case-study-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.case-study-single-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.case-study-subheading {
    font-size: 46px;
    display: block;
    margin-bottom: -16px;
    font-family: "Playfair Display", serif;
    color: var(--ocean-blue);
    line-height: 1;
    font-style: italic;
    font-weight: 400;
}

.case-study-content h2 {
    font-size: 39px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.case-study-content p {
    color: var(--forest-green);
    margin-bottom: 21px;
    line-height: 1.7;
    font-size: 16px;
}

.case-study-features {
    margin: 34px 0;
}

.case-feature-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.case-feature-icon {
    width: 42px;
    height: 42px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

.feature-icon-img {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.case-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
    font-weight: 600;
}

.case-feature-text p {
    color: var(--forest-green);
    margin-bottom: 0;
    font-size: 15px;
}

.case-study-btn {
    background: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.case-study-btn:hover {
    background: transparent;
    color: var(--ocean-blue);
}

/* Graduation Exhibition Section */
.graduation-exhibition-section {
    padding: 89px 0;
    background: var(--forest-green);
    color: #fff;
}

.exhibition-header {
    text-align: center;
    margin-bottom: 67px;
}

.exhibition-header h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 21px;
    font-weight: 600;
}

.exhibition-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0 auto;
}

.exhibition-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.exhibition-step {
    width: 20%;
    display: inline-block;
    text-align: center;
    position: relative;
    min-width: 180px;
}

.exhibition-step::after {
    width: 100%;
    height: 5px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 31px;
    background: var(--accent-vibrant);
    border-radius: 3px;
}

.exhibition-step:last-child::after {
    display: none;
}

.exhibition-number {
    z-index: 1;
    width: 62px;
    height: 62px;
    border: 5px solid var(--accent-vibrant);
    background: var(--forest-green);
    border-radius: 50%;
    color: var(--accent-vibrant);
    display: block;
    position: relative;
    margin: 0 auto 18px auto;
    transition: all 0.31s ease;
    box-shadow: 0 4px 16px rgba(244, 173, 45, 0.3);
}

.exhibition-step:hover .exhibition-number {
    background: var(--accent-vibrant);
    color: var(--forest-green);
    transform: scale(1.1);
}

.exhibition-number > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 600;
}

.exhibition-caption {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

.exhibition-step:hover .exhibition-caption {
    color: var(--accent-vibrant);
}

/* Before After Section */
.before-after-section {
    padding: 89px 0;
    position: relative;
    background: var(--neutral-background);
}

.before-after-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.before-after-subheading {
    font-size: 47px;
    display: block;
    margin-bottom: -17px;
    font-family: "Playfair Display", serif;
    color: var(--tertiary-shade);
    line-height: 1;
    font-style: italic;
    font-weight: 400;
}

.before-after-heading-section h2 {
    font-size: 39px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.before-after-heading-section p {
    color: #666;
    margin-bottom: 21px;
    line-height: 1.7;
    font-size: 16px;
}

.transformation-features {
    margin: 34px 0;
}

.transformation-feature {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.transformation-icon {
    width: 42px;
    height: 42px;
    background: var(--tertiary-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

.transformation-icon-img {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.transformation-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
    font-weight: 600;
}

.transformation-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
}

.transformation-btn {
    background: var(--tertiary-shade);
    border: 2px solid var(--tertiary-shade);
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.transformation-btn:hover {
    background: transparent;
    color: var(--tertiary-shade);
}

.transformation-single-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1279px) {
    .portfolio-content-layout,
    .case-study-layout,
    .before-after-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .case-study-image-area {
        order: 1;
    }

    .case-study-text-area {
        order: 2;
    }
}

@media (max-width: 889px) {
    .student-progress-section,
    .portfolio-text-image-section,
    .case-studies-section,
    .graduation-exhibition-section,
    .before-after-section {
        padding: 67px 0;
    }

    .creative-journey,
    .exhibition-progress {
        flex-direction: column;
        gap: 28px;
    }

    .journey-step,
    .exhibition-step {
        width: auto;
        min-width: auto;
    }

    .journey-step::after,
    .exhibition-step::after {
        display: none;
    }

    .progress-header h2,
    .exhibition-header h2 {
        font-size: 32px;
    }

    .portfolio-heading-section h2,
    .case-study-content h2,
    .before-after-heading-section h2 {
        font-size: 28px;
    }

    .portfolio-subheading,
    .case-study-subheading,
    .before-after-subheading {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .portfolio-hero-showcase {
        height: 75vh;
    }

    .portfolio-sub-images {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .portfolio-sub-offset {
        margin-top: 0;
    }

    .portfolio-content-layout {
        gap: 28px;
    }

    .case-study-layout,
    .before-after-layout {
        gap: 28px;
    }
}

/* ../intentional inconsistencies */
.journey-step {
    /* Slightly inconsistent spacing */
    margin-bottom: 13px;
}

.exhibition-step {
    margin-bottom: 14px; /* Different from journey-step */
}

/* Instructors Page Specific Styles */
.instructors-hero-showcase {
    position: relative;
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.instructors-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.43);
}

/* Commercial Projects Section */
.commercial-projects-section {
    padding: 89px 0;
    background: var(--forest-green);
    color: #fff;
}

.commercial-header {
    text-align: center;
    margin-bottom: 67px;
}

.commercial-header h2 {
    font-size: 46px;
    color: #fff;
    margin-bottom: 21px;
    font-weight: 600;
}

.commercial-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.commercial-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.project-step {
    width: 20%;
    display: inline-block;
    text-align: center;
    position: relative;
    min-width: 180px;
}

.project-step::after {
    width: 100%;
    height: 5px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 32px;
    background: var(--accent-vibrant);
    border-radius: 3px;
}

.project-step:last-child::after {
    display: none;
}

.project-number {
    z-index: 1;
    width: 64px;
    height: 64px;
    border: 5px solid var(--accent-vibrant);
    background: var(--forest-green);
    border-radius: 50%;
    color: var(--accent-vibrant);
    display: block;
    position: relative;
    margin: 0 auto 18px auto;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 18px rgba(244, 173, 45, 0.3);
}

.project-step:hover .project-number {
    background: var(--accent-vibrant);
    color: var(--forest-green);
    transform: scale(1.12);
}

.project-number > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 600;
}

.project-caption {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

.project-step:hover .project-caption {
    color: var(--accent-vibrant);
}

/* Instructor Experience Section */
.instructor-experience-section {
    padding: 89px 0;
    position: relative;
    background: #fff;
}

.experience-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.experience-heading-section {
    z-index: 0;
    text-align: left;
}

.experience-subheading {
    font-size: 49px;
    display: block;
    margin-bottom: -19px;
    font-family: "Playfair Display", serif;
    color: var(--ocean-blue);
    line-height: 1;
    z-index: 1;
    font-style: italic;
    font-weight: 400;
}

.experience-heading-section h2 {
    z-index: -1;
    font-size: 41px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    color: var(--forest-green);
    margin-bottom: 26px;
}

.experience-heading-section p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 16px;
}

.experience-btn {
    background: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    color: var(--forest-green);
    padding: 14px 23px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.experience-btn:hover {
    border: 2px solid var(--ocean-blue);
    background: var(--ocean-blue);
    color: #fff;
}

.experience-image-content {
    position: relative;
}

.main-experience-image img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.experience-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-top: 24px;
}

.experience-sub-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.exp-sub-offset {
    margin-top: 28px;
}

/* Instructor Services Overview Section */
.instructor-services-overview {
    padding: 89px 0;
    position: relative;
    background: var(--neutral-background);
}

.instructor-services-header {
    text-align: center;
    margin-bottom: 67px;
}

.instructor-services-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: var(--secondary-tone);
    text-transform: uppercase;
    letter-spacing: 1.9px;
    margin-bottom: 13px;
}

.instructor-services-main-title {
    font-size: 47px;
    font-weight: 300;
    color: var(--forest-green);
    margin: 0;
}

.instructor-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.instructor-service-item {
    display: block;
    width: 100%;
    position: relative;
    transition: all 0.31s ease;
    opacity: 0;
    visibility: hidden;
    animation: fadeInInstructorServices 0.8s ease forwards;
}

.instructor-service-item:nth-child(1) { animation-delay: 0.1s; }
.instructor-service-item:nth-child(2) { animation-delay: 0.25s; }
.instructor-service-item:nth-child(3) { animation-delay: 0.4s; }
.instructor-service-item:nth-child(4) { animation-delay: 0.55s; }
.instructor-service-item:nth-child(5) { animation-delay: 0.7s; }
.instructor-service-item:nth-child(6) { animation-delay: 0.85s; }

.instructor-service-block {
    display: flex;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    min-height: 160px;
}

.instructor-service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.instructor-service-block:hover .instructor-service-icon {
    background: var(--secondary-tone);
    transform: scale(1.06);
}

.instructor-service-icon {
    line-height: 1.3;
    position: relative;
    width: 76px;
    height: 76px;
    margin-right: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--tertiary-shade);
    transition: all 0.31s ease;
    box-shadow: 0px 8px 24px rgba(8, 93, 216, 0.2);
    flex-shrink: 0;
}

.instructor-service-icon-img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.instructor-service-content h3 {
    font-weight: 500;
    font-size: 19px;
    color: var(--forest-green);
    margin-bottom: 13px;
    line-height: 1.3;
}

.instructor-service-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.instructor-service-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--forest-green);
    border-bottom: 2px solid var(--neutral-border);
    text-decoration: none;
    transition: all 0.28s ease;
}

.instructor-service-link:hover {
    color: var(--secondary-tone);
    border-color: var(--secondary-tone);
}

@keyframes fadeInInstructorServices {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Course Leadership Section */
.course-leadership-section {
    padding: 89px 0;
    background: var(--sunset-orange);
    color: var(--forest-green);
}

.leadership-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.leadership-single-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.leadership-subheading {
    font-size: 48px;
    display: block;
    margin-bottom: -16px;
    font-family: "Playfair Display", serif;
    color: var(--ocean-blue);
    line-height: 1;
    font-style: italic;
    font-weight: 400;
}

.leadership-content h2 {
    font-size: 39px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.leadership-content p {
    color: var(--forest-green);
    margin-bottom: 21px;
    line-height: 1.7;
    font-size: 16px;
}

.leadership-features {
    margin: 34px 0;
}

.leadership-feature-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.leadership-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

.leadership-feature-icon-img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.leadership-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
    font-weight: 600;
}

.leadership-feature-text p {
    color: var(--forest-green);
    margin-bottom: 0;
    font-size: 15px;
}

.leadership-btn {
    background: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.leadership-btn:hover {
    background: transparent;
    color: var(--ocean-blue);
}

/* Responsive Design */
@media (max-width: 1279px) {
    .experience-content-layout,
    .leadership-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .leadership-image-area {
        order: 1;
    }

    .leadership-text-area {
        order: 2;
    }

    .instructor-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 889px) {
    .commercial-projects-section,
    .instructor-experience-section,
    .instructor-services-overview,
    .course-leadership-section {
        padding: 67px 0;
    }

    .commercial-timeline {
        flex-direction: column;
        gap: 28px;
    }

    .project-step {
        width: auto;
        min-width: auto;
    }

    .project-step::after {
        display: none;
    }

    .commercial-header h2 {
        font-size: 32px;
    }

    .instructor-services-main-title {
        font-size: 32px;
    }

    .experience-heading-section h2,
    .leadership-content h2 {
        font-size: 28px;
    }

    .experience-subheading,
    .leadership-subheading {
        font-size: 32px;
    }

    .instructor-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .instructors-hero-showcase {
        height: 75vh;
    }

    .experience-sub-images {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .exp-sub-offset {
        margin-top: 0;
    }

    .experience-content-layout,
    .leadership-layout {
        gap: 28px;
    }

    .instructor-service-block {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .instructor-service-icon {
        margin-right: 0;
        margin-bottom: 18px;
        align-self: center;
    }
}

/* ../intentional inconsistencies */
.project-step {
    /* Slightly inconsistent spacing */
    margin-bottom: 14px;
}

.instructor-service-block {
    /* Slightly inconsistent padding */
    padding: 23px 24px 25px 24px;
}


/* Careers Page Specific Styles */
.careers-hero-showcase {
    position: relative;
    height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.careers-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.44);
}

/* Career Process Section */
.career-process-section {
    padding: 89px 0;
    background: var(--neutral-background);
}

.career-process-header {
    text-align: center;
    margin-bottom: 67px;
}

.career-process-header h2 {
    font-size: 45px;
    color: var(--forest-green);
    margin-bottom: 21px;
    font-weight: 600;
}

.career-process-header p {
    font-size: 17px;
    color: #666;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.career-journey-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.career-journey-step {
    width: 20%;
    display: inline-block;
    text-align: center;
    position: relative;
    min-width: 180px;
}

.career-journey-step::after {
    width: 100%;
    height: 4px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 30px;
    background: var(--ocean-blue);
    border-radius: 3px;
}

.career-journey-step:last-child::after {
    display: none;
}

.career-step-number {
    z-index: 1;
    width: 60px;
    height: 60px;
    border: 4px solid var(--ocean-blue);
    background: #fff;
    border-radius: 50%;
    color: var(--ocean-blue);
    display: block;
    position: relative;
    margin: 0 auto 15px auto;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 15px rgba(214, 40, 40, 0.2);
}

.career-journey-step:hover .career-step-number {
    background: var(--ocean-blue);
    color: #fff;
    transform: scale(1.09);
}

.career-step-number > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
}

.career-step-caption {
    display: block;
    font-weight: 500;
    color: var(--forest-green);
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.28s ease;
}

.career-journey-step:hover .career-step-caption {
    color: var(--ocean-blue);
}

/* Career Opportunities Section */
.career-opportunities-section {
    padding: 89px 0;
    position: relative;
    background: #fff;
}

.opportunities-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.opportunities-heading-section {
    z-index: 0;
    text-align: left;
}

.opportunities-subheading {
    font-size: 50px;
    display: block;
    margin-bottom: -18px;
    font-family: "Playfair Display", serif;
    color: var(--secondary-tone);
    line-height: 1;
    z-index: 1;
    font-style: italic;
    font-weight: 400;
}

.opportunities-heading-section h2 {
    z-index: -1;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    color: var(--forest-green);
    margin-bottom: 26px;
}

.opportunities-heading-section p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 16px;
}

.opportunities-btn {
    background: var(--secondary-tone);
    border: 2px solid var(--secondary-tone);
    color: var(--forest-green);
    padding: 14px 23px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.opportunities-btn:hover {
    border: 2px solid var(--secondary-tone);
    background: var(--secondary-tone);
    color: #fff;
}

.opportunities-image-content {
    position: relative;
}

.main-opportunities-image img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.opportunities-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-top: 24px;
}

.opportunities-sub-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.opp-sub-offset {
    margin-top: 28px;
}

/* Career Services Overview Section */
.career-services-overview {
    padding: 89px 0;
    position: relative;
    background: var(--sunset-orange);
}

.career-services-header {
    text-align: center;
    margin-bottom: 67px;
}

.career-services-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 1.9px;
    margin-bottom: 13px;
}

.career-services-main-title {
    font-size: 47px;
    font-weight: 300;
    color: var(--forest-green);
    margin: 0;
}

.career-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.career-service-item {
    display: block;
    width: 100%;
    position: relative;
    transition: all 0.31s ease;
    opacity: 0;
    visibility: hidden;
    animation: fadeInCareerServices 0.8s ease forwards;
}

.career-service-item:nth-child(1) { animation-delay: 0.1s; }
.career-service-item:nth-child(2) { animation-delay: 0.25s; }
.career-service-item:nth-child(3) { animation-delay: 0.4s; }
.career-service-item:nth-child(4) { animation-delay: 0.55s; }
.career-service-item:nth-child(5) { animation-delay: 0.7s; }
.career-service-item:nth-child(6) { animation-delay: 0.85s; }

.career-service-block {
    display: flex;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    min-height: 170px;
}

.career-service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.career-service-block:hover .career-service-icon {
    background: var(--ocean-blue);
    transform: scale(1.06);
}

.career-service-icon {
    line-height: 1.3;
    position: relative;
    width: 76px;
    height: 76px;
    margin-right: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--secondary-tone);
    transition: all 0.31s ease;
    box-shadow: 0px 8px 24px rgba(232, 156, 40, 0.2);
    flex-shrink: 0;
}

.career-service-icon-img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.career-service-content h3 {
    font-weight: 500;
    font-size: 19px;
    color: var(--forest-green);
    margin-bottom: 13px;
    line-height: 1.3;
}

.career-service-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.career-service-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--forest-green);
    border-bottom: 2px solid var(--neutral-border);
    text-decoration: none;
    transition: all 0.28s ease;
}

.career-service-link:hover {
    color: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

@keyframes fadeInCareerServices {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Career Consultation Section */
.career-consultation-section {
    padding: 89px 0;
    background: var(--neutral-background);
    color: var(--forest-green);
}

.consultation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.consultation-single-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.consultation-subheading {
    font-size: 48px;
    display: block;
    margin-bottom: -16px;
    font-family: "Playfair Display", serif;
    color: var(--tertiary-shade);
    line-height: 1;
    font-style: italic;
    font-weight: 400;
}

.consultation-content h2 {
    font-size: 39px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.consultation-content p {
    color: #666;
    margin-bottom: 21px;
    line-height: 1.7;
    font-size: 16px;
}

.consultation-features {
    margin: 34px 0;
}

.consultation-feature-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.consultation-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--tertiary-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

.consultation-feature-icon-img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.consultation-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
    font-weight: 600;
}

.consultation-feature-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
}

.consultation-btn {
    background: var(--tertiary-shade);
    border: 2px solid var(--tertiary-shade);
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.consultation-btn:hover {
    background: transparent;
    color: var(--tertiary-shade);
}

/* Networking Events Section */
.networking-events-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 89px 0;
}

.networking-events-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.62);
}

.networking-events-section > .content-container {
    position: relative;
    z-index: 2;
}

.networking-events-header {
    text-align: center;
    margin-bottom: 67px;
}

.scissors {
    position: relative;
    padding-bottom: 34px;
    margin-bottom: 34px;
    font-size: 3.4rem;
    color: var(--accent-vibrant);
}

.scissors::after {
    bottom: 0;
    left: 50%;
    font-size: 26px;
    content: "🎯";
    position: absolute;
    color: var(--ocean-blue);
    transform: translateX(-50%);
}

.networking-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.networking-event {
    text-align: center;
}

.networking-event-icon {
    background: var(--accent-vibrant);
    width: 89px;
    height: 89px;
    margin-bottom: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-vibrant);
    border-radius: 50%;
    color: #fff;
    transition: all 0.31s ease;
}

.networking-event:hover .networking-event-icon {
    transform: scale(1.08);
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.networking-icon-img {
    width: 42px;
    height: 42px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(1247%) hue-rotate(18deg) brightness(95%) contrast(101%);
}

.networking-event-contents h3,
.networking-event-contents p {
    color: #fff;
}

.networking-event-contents h3 {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
}

.networking-event-contents p {
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1279px) {
    .opportunities-content-layout,
    .consultation-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .consultation-image-area {
        order: 1;
    }

    .consultation-text-area {
        order: 2;
    }

    .career-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 889px) {
    .career-process-section,
    .career-opportunities-section,
    .career-services-overview,
    .career-consultation-section,
    .networking-events-section {
        padding: 67px 0;
    }

    .career-journey-timeline {
        flex-direction: column;
        gap: 28px;
    }

    .career-journey-step {
        width: auto;
        min-width: auto;
    }

    .career-journey-step::after {
        display: none;
    }

    .career-process-header h2 {
        font-size: 32px;
    }

    .career-services-main-title {
        font-size: 32px;
    }

    .opportunities-heading-section h2,
    .consultation-content h2 {
        font-size: 28px;
    }

    .opportunities-subheading,
    .consultation-subheading {
        font-size: 32px;
    }

    .scissors {
        font-size: 2.2rem;
    }

    .career-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .careers-hero-showcase {
        height: 75vh;
    }

    .opportunities-sub-images {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .opp-sub-offset {
        margin-top: 0;
    }

    .opportunities-content-layout,
    .consultation-layout {
        gap: 28px;
    }

    .career-service-block {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .career-service-icon {
        margin-right: 0;
        margin-bottom: 18px;
        align-self: center;
    }

    .networking-events-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ../intentional inconsistencies */
.career-journey-step {
    /* Slightly inconsistent spacing */
    margin-bottom: 15px;
}

.career-service-block {
    /* Slightly inconsistent padding */
    padding: 24px 25px 26px 25px;
}
/* Contact Page Specific Styles */
.contact-hero-showcase {
    position: relative;
    height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.contact-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.46);
}

/* Contact Content Area Section */
.contact-content-area {
    padding-top: 94px;
    padding-bottom: 47px;
    background: #fff;
}

.contact-content-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 42px;
    align-items: center;
}

.contact-content-thumb img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.contact-section-header p {
    color: #555566;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 34px;
    margin-top: 34px;
}

.contact-section-header h3 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
}

/* Contact Features List Section */
.contact-feature-list-section {
    background: var(--neutral-background);
    padding: 67px 0;
}

.contact-feature-list {
    padding-bottom: 0;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.contact-features-title {
    font-size: 39px;
    margin-bottom: 42px;
    text-transform: capitalize;
    transition: all 0.32s ease 0s;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.contact-features-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 21px;
}

.contact-features-items li {
    margin-bottom: 18px;
    color: #666;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 420;
    line-height: 1.6;
    padding: 21px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    position: relative;
}

.contact-features-items li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: var(--forest-green);
}

.contact-features-items li::before {
    content: '•';
    color: var(--ocean-blue);
    font-size: 24px;
    position: absolute;
    left: 8px;
    top: 18px;
}

/* Map and Contact Form Section */
.contact-map-wrapper {
    height: 930px;
    position: relative;
}

.contact-map-wrapper iframe {
    width: 100%;
}

.contact-map-overlay {
    width: 460px;
    padding: 47px;
    background: #ffffff;
    position: absolute;
    right: 140px;
    top: 89px;
    box-shadow: 8px 8px 55px rgba(188, 188, 188, 0.28);
    border-radius: 13px;
}

.contact-schedule {
    overflow: hidden;
    margin-bottom: 28px;
}

.contact-schedule h5 {
    font-size: 22px;
    color: var(--forest-green);
    font-weight: 550;
    text-transform: uppercase;
    float: left;
    margin-bottom: 18px;
}

.contact-schedule ul {
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-schedule ul li {
    font-size: 15px;
    color: var(--forest-green);
    list-style: none;
    font-weight: 650;
    line-height: 32px;
    position: relative;
    padding-right: 115px;
}

.contact-schedule ul li span {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--secondary-tone);
    font-weight: 500;
}

.contact-form-container h5 {
    font-size: 22px;
    color: var(--forest-green);
    font-weight: 550;
    text-transform: uppercase;
    margin-bottom: 20%;
}

.contact-form-container form input {
    width: calc(55% - 26px);
    margin-right: 26px;
    float: left;
    height: 47px;
    margin-bottom: 26px;
    font-size: 17px;
    color: #2a2a2a;
    border: 1px solid #d8d8d8;
    padding-left: 26px;
    border-radius: 6px;
    transition: border-color 0.28s ease;
}

.contact-form-container form input:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 8px rgba(214, 40, 40, 0.2);
}

.contact-form-container form input.contact-phone {
    width: 45%;
    margin-right: 0;
}

.contact-form-container form input.contact-email {
    width: 100%;
    margin-right: 0;
}

.contact-form-container form input::placeholder {
    color: #666;
    font-weight: 400;
}

.contact-form-container form textarea {
    width: 100%;
    height: 94px;
    resize: none;
    font-size: 17px;
    color: #2a2a2a;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    padding-left: 26px;
    padding-top: 14px;
    margin-bottom: 24px;
    transition: border-color 0.28s ease;
}

.contact-form-container form textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 8px rgba(214, 40, 40, 0.2);
}

.contact-form-container form textarea::placeholder {
    color: #666;
    font-weight: 400;
}

.contact-primary-btn {
    display: inline-block;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 650;
    padding: 0 18px;
    color: #fff;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    background: var(--ocean-blue);
    width: 160px;
    height: 47px;
    border: 2px solid var(--ocean-blue);
    border-radius: 26px;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 43px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.contact-primary-btn:hover {
    background: transparent;
    color: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(214, 40, 40, 0.3);
}

/* Form Validation Styles */
.form-error {
    border-color: var(--warning-amber) !important;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.3) !important;
}

.form-success {
    border-color: var(--success-emerald) !important;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.3) !important;
}

/* Success Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 0;
    border-radius: 13px;
    width: 90%;
    max-width: 520px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 28px 34px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--forest-green);
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.modal-close {
    color: #aaa;
    font-size: 34px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.28s ease;
}

.modal-close:hover {
    color: var(--ocean-blue);
}

.modal-body {
    padding: 21px 34px;
    text-align: center;
}

.modal-body p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(78%) saturate(2476%) hue-rotate(92deg) brightness(101%) contrast(94%);
}

.modal-footer {
    padding: 0 34px 34px;
    text-align: center;
}

.modal-btn {
    background: var(--ocean-blue);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 26px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    cursor: pointer;
    transition: all 0.28s ease;
}

.modal-btn:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1279px) {
    .contact-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-map-overlay {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 21px;
        padding: 34px 28px;
    }

    .contact-schedule {
        margin-bottom: 34px;
    }

    .contact-schedule ul {
        float: none;
        text-align: left;
    }

    .contact-schedule h5 {
        float: none;
        margin-bottom: 21px;
    }
}

@media (max-width: 889px) {
    .contact-content-area,
    .contact-feature-list-section {
        padding: 67px 0;
    }

    .contact-section-header h3 {
        font-size: 34px;
    }

    .contact-features-title {
        font-size: 28px;
    }

    .contact-features-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-map-wrapper {
        height: auto;
    }

    .contact-map-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .contact-hero-showcase {
        height: 75vh;
    }

    .contact-section-header h3 {
        font-size: 28px;
    }

    .contact-map-overlay {
        padding: 24px 18px;
    }

    .contact-form-container form input {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }

    .modal-content {
        width: 95%;
        margin: 25% auto;
    }
}

/* ../intentional inconsistencies */
.contact-content-layout {
    /* Slightly inconsistent gap */
    gap: 41px;
}

.contact-feature-list {
    /* Mixed padding intentionally */
    padding-bottom: 0px;
}



/* Dashboard Page Specific Styles */
.dashboard-hero-showcase {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.dashboard-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.47);
}

/* Dashboard Content Area Section */
.dashboard-content-area {
    padding-top: 94px;
    padding-bottom: 47px;
    background: #fff;
}

.dashboard-content-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 47px;
    align-items: center;
}

.dashboard-content-thumb img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.dashboard-section-header p {
    color: #555566;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 34px;
    margin-top: 34px;
}

.dashboard-section-header h3 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
}

/* Dashboard Features List Section */
.dashboard-feature-list-section {
    background: var(--neutral-background);
    padding: 67px 0;
}

.dashboard-feature-list {
    padding-bottom: 0;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-features-title {
    font-size: 39px;
    margin-bottom: 42px;
    text-transform: capitalize;
    transition: all 0.32s ease 0s;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.dashboard-features-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 21px;
}

.dashboard-features-items li {
    margin-bottom: 18px;
    color: #666;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 420;
    line-height: 1.6;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    position: relative;
}

.dashboard-features-items li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: var(--forest-green);
}

.dashboard-features-items li::before {
    content: '▶';
    color: var(--ocean-blue);
    font-size: 16px;
    position: absolute;
    left: 8px;
    top: 21px;
}

/* Login Form Section */
.login-form-wrapper {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--tertiary-shade) 100%);
    padding: 94px 0;
    position: relative;
}

.login-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.login-form-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-container {
    width: 480px;
    max-width: 90%;
    padding: 52px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 21px 68px rgba(0, 0, 0, 0.25);
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 38px;
}

.login-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 21px;
    display: block;
    filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(1247%) hue-rotate(18deg) brightness(95%) contrast(101%);
}

.login-header h5 {
    font-size: 24px;
    color: var(--forest-green);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 13px;
    font-family: "Playfair Display", serif;
}

.login-header p {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.dashboard-login-form {
    margin-bottom: 28px;
}

.login-field-group {
    position: relative;
    margin-bottom: 28px;
}

.login-field-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-field-group input {
    width: 100%;
    height: 52px;
    font-size: 16px;
    color: #2a2a2a;
    border: 2px solid #e1e5e9;
    padding-left: 52px;
    padding-right: 18px;
    border-radius: 26px;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fafbfc;
}

.login-field-group input:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background: #fff;
    box-shadow: 0 0 13px rgba(214, 40, 40, 0.15);
}

.login-field-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    margin-top: 13px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--ocean-blue);
}

.remember-me label {
    color: #666;
    font-weight: 400;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.forgot-password {
    color: var(--tertiary-shade);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.28s ease;
}

.forgot-password:hover {
    color: var(--ocean-blue);
}

.dashboard-primary-btn {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 650;
    padding: 0 21px;
    color: #fff;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--tertiary-shade) 100%);
    height: 52px;
    border: none;
    border-radius: 26px;
    transition: all 0.31s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 52px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(214, 40, 40, 0.3);
}

.dashboard-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(214, 40, 40, 0.4);
}

.dashboard-primary-btn:active {
    transform: translateY(0);
}

/* Login Error Message */
.login-error-message {
    background: #fff5f5;
    border: 2px solid #fed7d7;
    border-radius: 8px;
    padding: 18px;
    margin-top: 21px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #c53030;
    font-size: 14px;
    font-weight: 500;
}

.error-icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(69%) saturate(2566%) hue-rotate(340deg) brightness(89%) contrast(93%);
    flex-shrink: 0;
}

.login-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e1e5e9;
}

.login-footer p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.login-footer a {
    color: var(--tertiary-shade);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.28s ease;
}

.login-footer a:hover {
    color: var(--ocean-blue);
}

/* Form Validation Styles */
.login-field-error {
    border-color: #fed7d7 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 8px rgba(197, 48, 48, 0.2) !important;
}

.login-field-success {
    border-color: #c6f6d5 !important;
    background: #f0fff4 !important;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.2) !important;
}

/* Loading State */
.login-loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.login-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 21px;
    height: 21px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1279px) {
    .dashboard-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .login-form-container {
        padding: 42px 34px;
    }
}

@media (max-width: 889px) {
    .dashboard-content-area,
    .dashboard-feature-list-section,
    .login-form-wrapper {
        padding: 67px 0;
    }

    .dashboard-section-header h3 {
        font-size: 34px;
    }

    .dashboard-features-title {
        font-size: 28px;
    }

    .dashboard-features-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .login-form-container {
        width: 95%;
        padding: 34px 24px;
    }

    .login-options {
        flex-direction: column;
        gap: 13px;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .dashboard-hero-showcase {
        height: 75vh;
    }

    .dashboard-section-header h3 {
        font-size: 28px;
    }

    .login-header h5 {
        font-size: 21px;
    }

    .login-field-group input {
        height: 47px;
        padding-left: 47px;
    }

    .field-icon {
        left: 15px;
        width: 18px;
        height: 18px;
    }

    .dashboard-primary-btn {
        height: 47px;
        line-height: 47px;
        font-size: 14px;
    }
}

/* ../intentional inconsistencies */
.dashboard-content-layout {
    /* Slightly inconsistent gap */
    gap: 46px;
}

.login-form-container {
    /* Mixed padding intentionally */
    padding: 51px 52px 53px 52px;
}

/* Resources Page Specific Styles */
.resources-hero-showcase {
    position: relative;
    height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.resources-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.48);
}

/* Resources Content Area Section */
.resources-content-area {
    padding-top: 94px;
    padding-bottom: 47px;
    background: #fff;
}

.resources-content-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 47px;
    align-items: center;
}

.resources-content-thumb img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.resources-section-header p {
    color: #555566;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 34px;
    margin-top: 34px;
}

.resources-section-header h3 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
}

/* Resources Features List Section */
.resources-feature-list-section {
    background: var(--neutral-background);
    padding: 67px 0;
}

.resources-feature-list {
    padding-bottom: 0;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.resources-features-title {
    font-size: 39px;
    margin-bottom: 42px;
    text-transform: capitalize;
    transition: all 0.32s ease 0s;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.resources-features-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 21px;
}

.resources-features-items li {
    margin-bottom: 18px;
    color: #666;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 420;
    line-height: 1.6;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    position: relative;
}

.resources-features-items li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: var(--forest-green);
}

.resources-features-items li::before {
    content: '📁';
    font-size: 18px;
    position: absolute;
    left: 8px;
    top: 21px;
}

/* Design Tools Services Overview Section */
.design-tools-services-overview {
    padding: 89px 0;
    position: relative;
    background: #fff;
}

.tools-services-header {
    text-align: center;
    margin-bottom: 67px;
}

.tools-services-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: var(--secondary-tone);
    text-transform: uppercase;
    letter-spacing: 1.9px;
    margin-bottom: 13px;
}

.tools-services-main-title {
    font-size: 47px;
    font-weight: 300;
    color: var(--forest-green);
    margin: 0;
}

.tools-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.tools-service-item {
    display: block;
    width: 100%;
    position: relative;
    transition: all 0.31s ease;
    opacity: 0;
    visibility: hidden;
    animation: fadeInToolsServices 0.8s ease forwards;
}

.tools-service-item:nth-child(1) { animation-delay: 0.1s; }
.tools-service-item:nth-child(2) { animation-delay: 0.25s; }
.tools-service-item:nth-child(3) { animation-delay: 0.4s; }
.tools-service-item:nth-child(4) { animation-delay: 0.55s; }
.tools-service-item:nth-child(5) { animation-delay: 0.7s; }
.tools-service-item:nth-child(6) { animation-delay: 0.85s; }

.tools-service-block {
    display: flex;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    min-height: 170px;
    border-left: 4px solid var(--neutral-border);
}

.tools-service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    border-left-color: var(--ocean-blue);
}

.tools-service-block:hover .tools-service-icon {
    background: var(--secondary-tone);
    transform: scale(1.06);
}

.tools-service-icon {
    line-height: 1.3;
    position: relative;
    width: 76px;
    height: 76px;
    margin-right: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--tertiary-shade);
    transition: all 0.31s ease;
    box-shadow: 0px 8px 24px rgba(8, 93, 216, 0.2);
    flex-shrink: 0;
}

.tools-service-icon-img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.tools-service-content h3 {
    font-weight: 500;
    font-size: 19px;
    color: var(--forest-green);
    margin-bottom: 13px;
    line-height: 1.3;
}

.tools-service-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.tools-service-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--forest-green);
    border-bottom: 2px solid var(--neutral-border);
    text-decoration: none;
    transition: all 0.28s ease;
}

.tools-service-link:hover {
    color: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

@keyframes fadeInToolsServices {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Inspiration Library Section */
.inspiration-library-section {
    padding: 89px 0;
    position: relative;
    background: var(--sunset-orange);
}

.inspiration-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.inspiration-heading-section {
    z-index: 0;
    text-align: left;
}

.inspiration-subheading {
    font-size: 50px;
    display: block;
    margin-bottom: -18px;
    font-family: "Playfair Display", serif;
    color: var(--ocean-blue);
    line-height: 1;
    z-index: 1;
    font-style: italic;
    font-weight: 400;
}

.inspiration-heading-section h2 {
    z-index: -1;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    color: var(--forest-green);
    margin-bottom: 26px;
}

.inspiration-heading-section p {
    color: var(--forest-green);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 16px;
}

.inspiration-btn {
    background: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    color: #fff;
    padding: 14px 23px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.inspiration-btn:hover {
    border: 2px solid var(--ocean-blue);
    background: transparent;
    color: var(--ocean-blue);
}

.inspiration-image-content {
    position: relative;
}

.main-inspiration-image img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.inspiration-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-top: 24px;
}

.inspiration-sub-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.insp-sub-offset {
    margin-top: 28px;
}

/* Useful Links Section */
.useful-links-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 89px 0;
}

.useful-links-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.62);
}

.useful-links-section > .content-container {
    position: relative;
    z-index: 2;
}

.useful-links-header {
    text-align: center;
    margin-bottom: 67px;
}

.scissors {
    position: relative;
    padding-bottom: 34px;
    margin-bottom: 34px;
    font-size: 3.4rem;
    color: var(--accent-vibrant);
}

.scissors::after {
    bottom: 0;
    left: 50%;
    font-size: 26px;
    content: "🔗";
    position: absolute;
    color: var(--ocean-blue);
    transform: translateX(-50%);
}

.useful-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.useful-link {
    text-align: center;
}

.useful-link-icon {
    background: var(--accent-vibrant);
    width: 89px;
    height: 89px;
    margin-bottom: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-vibrant);
    border-radius: 50%;
    color: #fff;
    transition: all 0.31s ease;
}

.useful-link:hover .useful-link-icon {
    transform: scale(1.08);
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.useful-link-icon-img {
    width: 42px;
    height: 42px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(1247%) hue-rotate(18deg) brightness(95%) contrast(101%);
}

.useful-link-contents h3,
.useful-link-contents p {
    color: #fff;
}

.useful-link-contents h3 {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
}

.useful-link-contents p {
    line-height: 1.7;
    font-size: 15px;
}

/* Resource Categories Showcase Section */
.resource-categories-showcase {
    padding: 89px 0;
    background: var(--neutral-background);
}

.categories-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-title-underline {
    color: var(--forest-green);
    font-size: 42px;
    margin-bottom: 24px;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 5px solid var(--secondary-tone);
    padding-bottom: 7px;
}

.resource-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.resource-category-item {
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.31s ease;
}

.resource-category-item:hover {
    transform: translateY(-5px);
}

.category-thumbnail {
    position: relative;
    margin: 0;
}

.category-thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.category-type {
    background: var(--secondary-tone);
    padding: 16px 21px;
    border-radius: 0 0 13px 13px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.category-type h3 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translatey(-100%);
    padding: 13px 19px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 8px 0 0 0;
    font-weight: 500;
    font-size: 14px;
}

.category-content {
    padding: 28px 34px 36px;
    text-align: center;
}

.category-content h2 {
    margin: 0 0 21px 0;
    font-size: 19px;
    color: var(--forest-green);
    line-height: 1.4;
    font-weight: 600;
}

.category-rating {
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.category-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.category-btn {
    color: #fff !important;
    background: var(--ocean-blue);
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    padding: 11px 21px !important;
    border-radius: 26px;
    transition: all 0.34s;
    text-decoration: none;
}

.category-btn:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1279px) {
    .resources-content-layout,
    .inspiration-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tools-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 889px) {
    .resources-content-area,
    .resources-feature-list-section,
    .design-tools-services-overview,
    .inspiration-library-section,
    .useful-links-section,
    .resource-categories-showcase {
        padding: 67px 0;
    }

    .resources-section-header h3 {
        font-size: 34px;
    }

    .resources-features-title {
        font-size: 28px;
    }

    .tools-services-main-title {
        font-size: 32px;
    }

    .inspiration-heading-section h2 {
        font-size: 28px;
    }

    .inspiration-subheading {
        font-size: 32px;
    }

    .scissors {
        font-size: 2.2rem;
    }

    .resources-features-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tools-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .resource-categories-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .resources-hero-showcase {
        height: 75vh;
    }

    .inspiration-sub-images {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .insp-sub-offset {
        margin-top: 0;
    }

    .resources-content-layout,
    .inspiration-content-layout {
        gap: 28px;
    }

    .tools-service-block {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .tools-service-icon {
        margin-right: 0;
        margin-bottom: 18px;
        align-self: center;
    }

    .useful-links-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .category-content {
        padding: 21px 18px 28px;
    }
}

/* imperfections - intentional inconsistencies */
.resources-content-layout {
    /* Slightly inconsistent gap */
    gap: 46px;
}

.tools-service-block {
    /* Slightly inconsistent padding */
    padding: 24px 25px 26px 25px;
}

/* Events Page Specific Styles */
.events-hero-showcase {
    position: relative;
    height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.events-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.49);
}

/* Events Content Area Section */
.events-content-area {
    padding-top: 94px;
    padding-bottom: 47px;
    background: #fff;
}

.events-content-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 47px;
    align-items: center;
}

.events-content-thumb img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.events-section-header p {
    color: #555566;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 34px;
    margin-top: 34px;
}

.events-section-header h3 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
}

/* Events Features List Section */
.events-feature-list-section {
    background: var(--neutral-background);
    padding: 67px 0;
}

.events-feature-list {
    padding-bottom: 0;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.events-features-title {
    font-size: 39px;
    margin-bottom: 42px;
    text-transform: capitalize;
    transition: all 0.32s ease 0s;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.events-features-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 21px;
}

.events-features-items li {
    margin-bottom: 18px;
    color: #666;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 420;
    line-height: 1.6;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    position: relative;
}

.events-features-items li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: var(--forest-green);
}

.events-features-items li::before {
    content: '🎨';
    font-size: 18px;
    position: absolute;
    left: 8px;
    top: 21px;
}

/* Event Types Services Overview Section */
.event-types-services-overview {
    padding: 89px 0;
    position: relative;
    background: #fff;
}

.event-services-header {
    text-align: center;
    margin-bottom: 67px;
}

.event-services-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: var(--secondary-tone);
    text-transform: uppercase;
    letter-spacing: 1.9px;
    margin-bottom: 13px;
}

.event-services-main-title {
    font-size: 47px;
    font-weight: 300;
    color: var(--forest-green);
    margin: 0;
}

.event-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.event-service-item {
    display: block;
    width: 100%;
    position: relative;
    transition: all 0.31s ease;
    opacity: 0;
    visibility: hidden;
    animation: fadeInEventServices 0.8s ease forwards;
}

.event-service-item:nth-child(1) { animation-delay: 0.1s; }
.event-service-item:nth-child(2) { animation-delay: 0.25s; }
.event-service-item:nth-child(3) { animation-delay: 0.4s; }
.event-service-item:nth-child(4) { animation-delay: 0.55s; }
.event-service-item:nth-child(5) { animation-delay: 0.7s; }
.event-service-item:nth-child(6) { animation-delay: 0.85s; }

.event-service-block {
    display: flex;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    min-height: 170px;
    border-left: 4px solid var(--neutral-border);
}

.event-service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    border-left-color: var(--ocean-blue);
}

.event-service-block:hover .event-service-icon {
    background: var(--secondary-tone);
    transform: scale(1.06);
}

.event-service-icon {
    line-height: 1.3;
    position: relative;
    width: 76px;
    height: 76px;
    margin-right: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--tertiary-shade);
    transition: all 0.31s ease;
    box-shadow: 0px 8px 24px rgba(8, 93, 216, 0.2);
    flex-shrink: 0;
}

.event-service-icon-img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.event-service-content h3 {
    font-weight: 500;
    font-size: 19px;
    color: var(--forest-green);
    margin-bottom: 13px;
    line-height: 1.3;
}

.event-service-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.event-service-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--forest-green);
    border-bottom: 2px solid var(--neutral-border);
    text-decoration: none;
    transition: all 0.28s ease;
}

.event-service-link:hover {
    color: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

@keyframes fadeInEventServices {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Exhibition Schedule Showcase Section */
.exhibition-schedule-showcase {
    padding: 89px 0;
    background: var(--sunset-orange);
}

.exhibition-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-title-underline {
    color: var(--forest-green);
    font-size: 42px;
    margin-bottom: 24px;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 5px solid var(--ocean-blue);
    padding-bottom: 7px;
}

.exhibition-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.exhibition-event-item {
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.31s ease;
}

.exhibition-event-item:hover {
    transform: translateY(-5px);
}

.event-thumbnail {
    position: relative;
    margin: 0;
}

.event-thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.event-category {
    background: var(--ocean-blue);
    padding: 16px 21px;
    border-radius: 0 0 13px 13px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.event-category h3 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translatey(-100%);
    padding: 13px 19px;
    background: var(--accent-vibrant);
    color: var(--forest-green);
    border-radius: 8px 0 0 0;
    font-weight: 600;
    font-size: 16px;
}

.event-content {
    padding: 28px 34px 36px;
    text-align: center;
}

.event-content h2 {
    margin: 0 0 21px 0;
    font-size: 19px;
    color: var(--forest-green);
    line-height: 1.4;
    font-weight: 600;
}

.event-rating {
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.event-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

/* Open Days Section */
.open-days-section {
    padding: 89px 0;
    background: var(--neutral-background);
    color: var(--forest-green);
}

.open-days-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.open-days-single-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.open-days-subheading {
    font-size: 48px;
    display: block;
    margin-bottom: -16px;
    font-family: "Playfair Display", serif;
    color: var(--tertiary-shade);
    line-height: 1;
    font-style: italic;
    font-weight: 400;
}

.open-days-content h2 {
    font-size: 39px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.open-days-content p {
    color: #666;
    margin-bottom: 21px;
    line-height: 1.7;
    font-size: 16px;
}

.open-days-features {
    margin: 34px 0;
}

.open-days-feature-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.open-days-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--tertiary-shade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

.open-days-feature-icon-img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.open-days-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--forest-green);
    font-weight: 600;
}

.open-days-feature-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
}

.open-days-btn {
    background: var(--tertiary-shade);
    border: 2px solid var(--tertiary-shade);
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.31s ease;
}

.open-days-btn:hover {
    background: transparent;
    color: var(--tertiary-shade);
}

/* Conferences & Lectures Section */
.conferences-lectures-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 89px 0;
}

.conferences-lectures-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.65);
}

.conferences-lectures-section > .content-container {
    position: relative;
    z-index: 2;
}

.conferences-lectures-header {
    text-align: center;
    margin-bottom: 67px;
}

.scissors {
    position: relative;
    padding-bottom: 34px;
    margin-bottom: 34px;
    font-size: 3.4rem;
    color: var(--accent-vibrant);
}

.scissors::after {
    bottom: 0;
    left: 50%;
    font-size: 26px;
    content: "🎤";
    position: absolute;
    color: var(--ocean-blue);
    transform: translateX(-50%);
}

.conferences-lectures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.conference-lecture {
    text-align: center;
}

.conference-lecture-icon {
    background: var(--accent-vibrant);
    width: 89px;
    height: 89px;
    margin-bottom: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-vibrant);
    border-radius: 50%;
    color: #fff;
    transition: all 0.31s ease;
}

.conference-lecture:hover .conference-lecture-icon {
    transform: scale(1.08);
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.conference-lecture-icon-img {
    width: 42px;
    height: 42px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(1247%) hue-rotate(18deg) brightness(95%) contrast(101%);
}

.conference-lecture-contents h3,
.conference-lecture-contents p {
    color: #fff;
}

.conference-lecture-contents h3 {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
}

.conference-lecture-contents p {
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1279px) {
    .events-content-layout,
    .open-days-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .open-days-image-area {
        order: 1;
    }

    .open-days-text-area {
        order: 2;
    }

    .event-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }

    .exhibition-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 889px) {
    .events-content-area,
    .events-feature-list-section,
    .event-types-services-overview,
    .open-days-section,
    .conferences-lectures-section,
    .exhibition-schedule-showcase {
        padding: 67px 0;
    }

    .events-section-header h3 {
        font-size: 34px;
    }

    .events-features-title {
        font-size: 28px;
    }

    .event-services-main-title {
        font-size: 32px;
    }

    .open-days-content h2 {
        font-size: 28px;
    }

    .open-days-subheading {
        font-size: 32px;
    }

    .scissors {
        font-size: 2.2rem;
    }

    .events-features-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .exhibition-events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .events-hero-showcase {
        height: 75vh;
    }

    .events-content-layout,
    .open-days-layout {
        gap: 28px;
    }

    .event-service-block {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .event-service-icon {
        margin-right: 0;
        margin-bottom: 18px;
        align-self: center;
    }

    .conferences-lectures-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .event-content {
        padding: 21px 18px 28px;
    }
}

/* FAQ Page Specific Styles */
.faq-hero-showcase {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 89px;
}

.faq-hero-showcase .hero-overlay::before {
    background: rgba(0, 0, 0, 0.51);
}

/* Main FAQ Area Section */
.main-faq-area {
    padding: 110px 0;
    background: #fafafa;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 67px;
}

.faq-section-intro h3 {
    font-size: 48px;
    font-weight: 650;
    line-height: 1.2;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
    margin-bottom: 18px;
}

.faq-section-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #8a8a92;
    font-weight: 380;
    margin-top: 12px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    display: flex;
    justify-content: center;
}

.main-faq-wrapper {
    max-width: 840px;
    width: 100%;
}

.faq-question-item {
    border: 1px solid #ede4ff;
    border-radius: 12px;
    margin-bottom: 18px;
    background-color: #fdfdfd;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.faq-question-item:hover {
    box-shadow: 0px 12px 22px 0px rgba(0, 0, 2, 0.05);
    border-color: transparent;
}

.faq-question-header {
    padding: 28px 34px;
    cursor: pointer;
    position: relative;
    transition: all 0.28s ease;
}

.faq-question-header h4 {
    font-size: 19px;
    font-weight: 580;
    color: var(--forest-green);
    margin-bottom: 0;
    font-family: "Lato", sans-serif;
    padding-right: 42px;
    transition: all 0.35s ease;
}

.faq-question-header:hover h4 {
    color: var(--ocean-blue);
}

.faq-answer-content {
    padding: 0 34px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.35s ease;
    border-top: 0px solid #ede4ff;
}

.faq-answer-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #646470;
    margin-bottom: 28px;
    padding-top: 0;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s, padding-top 0.35s ease;
}

.faq-question-item.faq-active .faq-answer-content {
    max-height: 1000px;
    padding-top: 6px;
    padding-bottom: 22px;
    border-top: 1px solid #ede4ff;
}

.faq-question-item.faq-active .faq-answer-content p {
    padding-top: 22px;
    opacity: 1;
    transform: translateY(0);
}

/* Add visual indicator for questions */
.faq-question-header::after {
    content: "+";
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 280;
    color: #8a8a92;
    transition: all 0.35s ease;
}

.faq-question-item.faq-active .faq-question-header::after {
    content: "-";
    color: var(--ocean-blue);
    transform: translateY(-50%) rotate(180deg);
}

.faq-question-item:hover .faq-question-header::after {
    color: var(--ocean-blue);
}

.faq-question-item.faq-active .faq-question-header h4 {
    color: var(--ocean-blue);
}

.faq-question-item.faq-active {
    box-shadow: 0px 12px 22px 0px rgba(0, 0, 2, 0.05);
    border-color: transparent;
}

/* Platform Help Accordion Area */
.platform-help-accordion-area {
    padding-top: 94px;
    padding-bottom: 94px;
    background: #fff;
}

.platform-help-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.platform-help-accordion-thumb {
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 0;
}

.platform-help-accordion-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.31s ease;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.platform-help-accordion-thumb:hover img {
    transform: scale(1.02);
}

.platform-help-faq-ask h3 {
    font-size: 42px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 47px;
    font-family: "Playfair Display", serif;
}

/* Platform Help Accordion Styles */
.platform-help-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--neutral-border);
    margin-bottom: 15px;
}

.platform-help-card-header {
    background-color: transparent;
    padding: 18px 0;
    border: none;
}

.platform-help-btn {
    font-size: 16px;
    color: var(--forest-green) !important;
    font-weight: 500 !important;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    position: relative;
    padding: 0;
    transition: color 0.28s ease;
    padding-right: 42px;
}

.platform-help-btn:focus {
    outline: none;
    box-shadow: none;
}

.platform-help-btn span {
    color: var(--tertiary-shade);
    font-weight: 600;
    margin-right: 13px;
}

.platform-help-btn::after {
    position: absolute;
    content: "\002B";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--forest-green);
    font-size: 21px;
    transition: all 0.28s ease;
}

.platform-help-btn.platform-help-collapsed::after {
    content: "\2212";
}

.platform-help-btn:hover {
    color: var(--ocean-blue) !important;
}

.platform-help-card-body {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    padding: 13px 0 24px;
    font-weight: 400;
}

.platform-help-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.31s ease;
}

.platform-help-collapse.platform-help-show {
    max-height: 500px;
}

/* Technical Requirements Text Section */
.tech-requirements-text-section {
    padding: 89px 0;
    background-color: var(--neutral-background);
}

.tech-requirements-content-header {
    margin-bottom: 34px;
    text-align: center;
}

.tech-requirements-content-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
    color: var(--forest-green);
    font-family: "Playfair Display", serif;
}

.tech-requirements-title {
    font-size: 28px;
    margin-bottom: 28px;
    color: var(--forest-green);
    text-align: center;
    font-weight: 500;
}

.tech-requirements-section-content {
    margin-top: 34px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tech-requirements-section-content p {
    margin-bottom: 24px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1279px) {
    .platform-help-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .platform-help-image-section {
        order: 1;
    }

    .platform-help-content-section {
        order: 2;
    }
}

@media (max-width: 889px) {
    .main-faq-area,
    .platform-help-accordion-area,
    .tech-requirements-text-section {
        padding: 67px 0;
    }

    .faq-section-intro h3 {
        font-size: 32px;
    }

    .platform-help-faq-ask h3 {
        font-size: 28px;
    }

    .tech-requirements-content-header h1 {
        font-size: 28px;
    }

    .tech-requirements-title {
        font-size: 24px;
    }

    .faq-question-header {
        padding: 21px 24px;
    }

    .faq-question-header h4 {
        font-size: 16px;
        padding-right: 34px;
    }

    .faq-answer-content {
        padding: 0 24px;
    }

    .faq-question-header::after {
        right: 24px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .faq-hero-showcase {
        height: 75vh;
    }

    .faq-section-intro h3 {
        font-size: 28px;
    }

    .platform-help-faq-ask h3 {
        font-size: 24px;
    }

    .faq-question-header {
        padding: 18px 21px;
    }

    .faq-question-header h4 {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 21px;
    }

    .platform-help-card-header {
        padding: 15px 0;
    }

    .faq-question-header::after {
        right: 21px;
    }
}

