/* -------------------------------------------------------------------------- */
/*                                  VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Oswald', sans-serif;

    --color-bg: #e0e5ec;
    --color-bg-darker: #d1d9e6; /* For subtle section differentiation */
    --color-bg-lighter: #ffffff; /* For inner shadows light part */

    --color-text-primary: #333333; /* Main text, good contrast on light bg */
    --color-text-secondary: #555555; /* Slightly lighter for less emphasis */
    --color-text-headings: #222222; /* Darker for strong headings */
    --color-text-light: #FFFFFF; /* For text on dark/image backgrounds */

    --color-accent1: #e52e71; /* Vibrant Pink/Magenta */
    --color-accent2: #ff8a00; /* Bright Orange */
    --color-gradient: linear-gradient(90deg, var(--color-accent2), var(--color-accent1));

    --shadow-light-rgba: rgba(255, 255, 255, 0.55); /* Adjusted for neumorphism */
    --shadow-dark-rgba: rgba(163, 177, 198, 0.65); /* Adjusted for neumorphism */

    --neumorphic-shadow-outer: 9px 9px 18px var(--shadow-dark-rgba), -9px -9px 18px var(--shadow-light-rgba);
    --neumorphic-shadow-outer-hover: 12px 12px 24px var(--shadow-dark-rgba), -12px -12px 24px var(--shadow-light-rgba);
    --neumorphic-shadow-inner: inset 6px 6px 12px var(--shadow-dark-rgba), inset -6px -6px 12px var(--shadow-light-rgba);
    --neumorphic-shadow-inner-light: inset 3px 3px 6px var(--shadow-dark-rgba), inset -3px -3px 6px var(--shadow-light-rgba);
    --neumorphic-shadow-button: 5px 5px 10px var(--shadow-dark-rgba), -5px -5px 10px var(--shadow-light-rgba);
    --neumorphic-shadow-button-active: inset 4px 4px 8px var(--shadow-dark-rgba), inset -4px -4px 8px var(--shadow-light-rgba);

    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 50px; /* For buttons */

    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;

    --header-height: 70px;
}

/* -------------------------------------------------------------------------- */
/*                                BASIC RESET & BODY                          */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-container {
    max-width: 100%; /* Takes full width but content is constrained by .content-wrapper */
}

/* -------------------------------------------------------------------------- */
/*                                  TYPOGRAPHY                                */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--color-text-headings);
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); } /* For section titles */
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); } /* For card titles */
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
}
a {
    color: var(--color-accent1);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}
a:hover {
    color: var(--color-accent2);
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------------------------- */
/*                             LAYOUT & CONTAINERS                            */
/* -------------------------------------------------------------------------- */
.content-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.grid-container {
    display: grid;
    gap: 30px;
}

/* -------------------------------------------------------------------------- */
/*                                   SECTIONS                                 */
/* -------------------------------------------------------------------------- */
section {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
    color: var(--color-text-headings);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-gradient);
    border-radius: 2px;
}

/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */
header {
    background: var(--color-bg);
    padding: 0; /* Padding handled by nav-container */
    box-shadow: 0 2px 10px var(--shadow-dark-rgba);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: bold;
    color: var(--color-accent1);
    text-decoration: none;
}
.logo:hover {
    color: var(--color-accent2);
    text-decoration: none;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
nav ul li {
    margin-left: 25px;
}
nav ul li a {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: bold;
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 5px 0; /* Add some padding for better click area */
}
nav ul li a:hover,
nav ul li a.active-link {
    color: var(--color-accent1);
    text-decoration: none; /* No underline for nav links on hover */
}
.burger-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-primary);
    background: none;
    border: none;
    padding: 0;
}

/* -------------------------------------------------------------------------- */
/*                                HERO SECTION                                */
/* -------------------------------------------------------------------------- */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    position: relative;
    padding: 60px 20px; /* Reduced padding from 100px */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)); /* Slightly stronger overlay */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--color-text-light);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    color: var(--color-text-light); /* Ensure paragraph text is also white */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* -------------------------------------------------------------------------- */
/*                            NEUMORPHIC COMPONENTS                           */
/* -------------------------------------------------------------------------- */

/* Global Button Styles */
.neumorphic-button,
button,
input[type="submit"],
input[type="button"] {
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius-xl);
    background: var(--color-bg);
    box-shadow: var(--neumorphic-shadow-button);
    color: var(--color-accent1);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-timing);
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-align: center;
    line-height: 1.5; /* Ensure text is vertically centered */
}
.neumorphic-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    box-shadow: var(--neumorphic-shadow-inner-light);
    color: var(--color-accent2);
    text-decoration: none;
}
.neumorphic-button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
    box-shadow: var(--neumorphic-shadow-button-active);
    transform: translateY(1px); /* Subtle press effect */
}

/* Neumorphic Card */
.neumorphic-card, .card {
    background: var(--color-bg);
    border-radius: var(--border-radius-lg);
    padding: clamp(20px, 3vw, 30px);
    box-shadow: var(--neumorphic-shadow-outer);
    transition: all var(--transition-speed) var(--transition-timing);
    display: flex;
    flex-direction: column;
}
.neumorphic-card:hover, .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neumorphic-shadow-outer-hover);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column; /* To allow button at bottom if needed */
}
.card-content h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-text-headings);
    text-align: left;
}
.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    text-align: left;
    flex-grow: 1; /* Pushes button to bottom if parent has fixed height */
}
.card-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 220px; /* Consistent fixed height for card images */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c5cae9; /* Slightly darker placeholder color */
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

/* Centered content for specific card types */
.team-section .card,
.statistics-section .neumorphic-card,
.accolades-section .neumorphic-card {
    align-items: center;
}
.team-section .card .card-content h3,
.team-section .card .card-content p,
.statistics-section .neumorphic-card h3,
.statistics-section .neumorphic-card p,
.accolades-section .neumorphic-card h3,
.accolades-section .neumorphic-card p {
    text-align: center;
}

/* Neumorphic Input Fields */
.neumorphic-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--color-bg);
    box-shadow: var(--neumorphic-shadow-inner);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
}
.neumorphic-input::placeholder {
    color: #888;
}
.neumorphic-input:focus {
    outline: none;
    box-shadow: var(--neumorphic-shadow-inner-light), /* Inner part */
                3px 3px 6px var(--shadow-dark-rgba), -3px -3px 6px var(--shadow-light-rgba); /* Outer glow */
}
textarea.neumorphic-input {
    min-height: 120px;
    resize: vertical;
}

/* -------------------------------------------------------------------------- */
/*                              PARALLAX SECTIONS                             */
/* -------------------------------------------------------------------------- */
.parallax-section {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px; /* Reduced padding */
    color: var(--color-text-light);
    position: relative;
}
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65); /* Consistent overlay */
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.parallax-content h2, /* This should be .parallax-section .section-title */
.parallax-section .section-title { /* Target the section title specifically */
    color: var(--color-text-light);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}
.parallax-content p {
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-size: 1.1rem;
}
.parallax-section .section-title::after {
    background: var(--color-bg-lighter); /* Lighter line for contrast */
}


/* -------------------------------------------------------------------------- */
/*                                  SWITCHES                                  */
/* -------------------------------------------------------------------------- */
.switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px; /* Space from paragraph above */
    margin-bottom: 15px;
}
.switch-container label {
    margin-right: 10px;
    color: var(--color-text-secondary);
}
.parallax-content .switch-container label { /* Label color in parallax */
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: var(--border-radius-xl);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2); /* Subtle inner shadow */
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px; width: 26px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3); /* Shadow for the knob */
}
input:checked + .slider {
    background: var(--color-gradient);
}
input:checked + .slider:before {
    transform: translateX(26px);
}

/* -------------------------------------------------------------------------- */
/*                         SPECIFIC SECTION STYLING                         */
/* -------------------------------------------------------------------------- */

.statistics-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.statistics-section .neumorphic-card h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-accent1);
    margin-bottom: 0.5rem;
}

.insights-section .grid-container,
.webinars-section .grid-container,
.news-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.webinars-section,
.news-section,
.external-resources-section {
    background-color: var(--color-bg-darker);
}
.webinars-section .card .neumorphic-button { /* Button inside webinar card */
    margin-top: auto; /* Pushes button to the bottom of card-content */
    padding: 10px 20px;
    font-size: 0.9rem;
    align-self: center; /* Center button if card content is flex */
}

.team-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Slightly smaller min for team cards */
}
.team-section .card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-left: auto; /* Centers the image container if card uses align-items: center */
    margin-right: auto;
}
.team-section .card-image img {
    border-radius: 50%;
}

.accolades-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.accolades-section .neumorphic-card img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    border-radius: var(--border-radius-sm);
    margin-left: auto;
    margin-right: auto;
}

.news-section .card-content small {
    display: block;
    margin-top: 10px;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    text-align: left;
}

.press-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.press-section .neumorphic-card h4 {
    color: var(--color-accent1);
    margin-bottom: 0.8rem;
    text-align: left;
}
.press-section .neumorphic-card p {
    font-style: italic;
    margin-bottom: 1rem;
    text-align: left;
}
.press-section .neumorphic-button { /* Read more button in press */
    padding: 8px 16px;
    font-size: 0.85rem;
    align-self: flex-start; /* Align to left */
}

.external-resources-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.resource-card {
    background: var(--color-bg); /* Base color, not darker section color */
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: 7px 7px 14px #babecc, -7px -7px 14px var(--color-bg-lighter);
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    display: flex; /* To use flex-grow for content */
    flex-direction: column;
}
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 18px #babecc, -10px -10px 18px var(--color-bg-lighter);
}
.resource-card h3 {
    font-size: 1.3rem;
    color: var(--color-accent1);
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
}
.resource-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    text-align: left;
    flex-grow: 1; /* Pushes link to bottom */
}
.resource-card a.read-more-link, /* Generic read more link */
.resource-card a { /* For the existing links */
    color: var(--color-accent2);
    font-weight: bold;
    display: inline-block;
    margin-top: auto; /* Pushes to bottom */
    text-decoration: none;
    padding: 8px 0; /* Better click area */
    align-self: flex-start;
}
.resource-card a.read-more-link:hover,
.resource-card a:hover {
    text-decoration: underline;
    color: var(--color-accent1);
}


.contact-section #contact-form {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.contact-section #contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--color-text-secondary);
    text-align: left;
}
.contact-section #contact-form .neumorphic-button {
    margin-top: 10px;
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
footer {
    background: var(--color-bg-darker);
    color: var(--color-text-primary);
    padding: 40px 20px 20px;
    text-align: center;
    box-shadow: inset 0 5px 10px rgba(163,177,198,0.3); /* Subtle inner top shadow */
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-nav ul {
    list-style: none;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav ul li {
    margin: 5px 15px;
}
.footer-nav ul li a {
    text-decoration: none;
    color: var(--color-text-primary);
}
.footer-nav ul li a:hover {
    color: var(--color-accent1);
    text-decoration: none;
}
.social-links {
    margin-bottom: 20px;
}
.social-links p {
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--color-text-headings);
}
.social-links a {
    color: var(--color-text-primary);
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
    padding: 5px; /* Better touch targets */
}
.social-links a:hover {
    color: var(--color-accent1);
    text-decoration: none;
}
.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}
.copyright p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* -------------------------------------------------------------------------- */
/*                         PRIVACY & TERMS PAGES SPECIFIC                     */
/* -------------------------------------------------------------------------- */
.privacy-policy-page .content-wrapper,
.terms-conditions-page .content-wrapper {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
}
.privacy-policy-page h1, .terms-conditions-page h1,
.privacy-policy-page h2, .terms-conditions-page h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--color-text-headings);
}
.privacy-policy-page h1, .terms-conditions-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
}
.privacy-policy-page p, .terms-conditions-page p,
.privacy-policy-page ul, .terms-conditions-page ul {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}
.privacy-policy-page ul, .terms-conditions-page ul {
    list-style-position: outside; /* Better alignment for list items */
    padding-left: 20px; /* Indent list */
}
.privacy-policy-page ul li, .terms-conditions-page ul li {
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/*                             SUCCESS PAGE SPECIFIC                          */
/* -------------------------------------------------------------------------- */
.success-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    background-color: var(--color-bg);
}
.success-page-container .neumorphic-card {
    max-width: 500px;
    width: 100%;
    align-items: center; /* Center content of the card */
}
.success-page-container h1 {
    color: var(--color-accent1);
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.success-page-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.success-page-container .neumorphic-button {
    background: var(--color-gradient); /* Use gradient for primary action button */
    color: var(--color-text-light);
    box-shadow: var(--neumorphic-shadow-button);
}
.success-page-container .neumorphic-button:hover {
    opacity: 0.9; /* Simple hover for gradient button */
    box-shadow: var(--neumorphic-shadow-inner-light);
    color: var(--color-text-light); /* Keep text light */
}

/* -------------------------------------------------------------------------- */
/*                                 RESPONSIVE                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    /* Tablet adjustments if needed */
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .section-title {
        font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    }
    .hero-content h1 {
        font-size: clamp(2.2rem, 5.5vw, 3rem);
    }
    .hero-content p {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--color-bg);
        position: absolute;
        top: var(--header-height);
        left: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 10px 0;
        border-top: 1px solid var(--color-bg-darker);
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 0; /* Remove left margin */
        width: 100%;
    }
    nav ul li a {
        padding: 12px 20px; /* Full width clickable area */
        display: block;
        text-align: center;
        border-bottom: 1px solid var(--color-bg-darker);
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .burger-menu {
        display: block;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .statistics-section .neumorphic-card,
    .accolades-section .neumorphic-card {
        padding: 20px;
    }
     .statistics-section .neumorphic-card h3 {
        font-size: 2rem;
    }

    .footer-nav ul {
        flex-direction: column;
    }
    .footer-nav ul li {
        margin: 8px 0;
    }

    .contact-section #contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .section-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }
     .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .hero-content p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    .neumorphic-button, button, input[type="submit"], input[type="button"] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .card-image {
        height: 180px; /* Slightly smaller images on small screens */
    }
}

/* -------------------------------------------------------------------------- */
/*                             AOS ANIMATION SUPPORT                          */
/* -------------------------------------------------------------------------- */
[data-aos] {
    transition-property: transform, opacity;
}