/* style.css */

:root {
    --dark-green: #125603;
    --mid-green: #488E23;
    --light-green: #8CB851;
    --pale-lime: #DCE78D;
    --white: #ffffff;
    --light-gray: #f8faf5;
    --medium-gray: #e8eee0;
    --dark-gray: #333333;
    --text-color: #2c3e2d;
    --blue-accent: #1a5f7a;
    --pharma-blue: #0066a1;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-green);
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h2.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--mid-green), var(--light-green));
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--mid-green);
}

h4 {
    font-size: 1.4rem;
    color: var(--pharma-blue);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--mid-green);
    transition: var(--transition);
}

a:hover {
    color: var(--dark-green);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--mid-green), var(--light-green));
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    gap: 8px;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: linear-gradient(to right, var(--dark-green), var(--mid-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 86, 3, 0.25);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mid-green);
    color: var(--mid-green);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--mid-green);
    color: white;
}

.btn-blue {
    background: linear-gradient(to right, var(--pharma-blue), #0088cc);
}

.btn-blue:hover {
    background: linear-gradient(to right, #005580, var(--pharma-blue));
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--light-green);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

/* Actual Amygdala Pharmaceuticals Logo Styling */
.logo-img {
    height: 65px;
    width: auto;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pharma-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 28px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav ul li a:hover {
    color: var(--dark-green);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--mid-green);
    transition: width 0.3s;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 100;
    padding: 10px 0;
    border-top: 3px solid var(--light-green);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--dark-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-green);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--text-color);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-gray);
}

.section-medium {
    background-color: var(--medium-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-color);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Company Details */
.company-highlights {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 50px;
    border-top: 5px solid var(--light-green);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.highlight-item {
    padding: 25px;
    border-left: 5px solid var(--mid-green);
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item h4 {
    color: var(--dark-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item h4 i {
    color: var(--mid-green);
    font-size: 1.5rem;
}

/* Mission & Values */
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid var(--light-green);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pale-lime), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--dark-green);
    font-size: 2.2rem;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.product-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 231, 141, 0.9), rgba(140, 184, 81, 0.7));
    opacity: 0.9;
}

.product-header i {
    z-index: 1;
    position: relative;
}

.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    background-color: var(--pale-lime);
    color: var(--dark-green);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: flex-start;
}

.product-content h3 {
    margin-bottom: 15px;
    min-height: 60px;
}

.product-details {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.product-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Comprehensive Products Grid */
.comprehensive-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.comprehensive-card {
    height: auto;
}

.filter-btn {
    padding: 10px 20px;
    margin: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn.active {
    background: linear-gradient(to right, var(--mid-green), var(--light-green));
    color: white;
}

/* Therapeutic Areas */
.therapeutic-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.area-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--pharma-blue);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.area-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--pharma-blue);
    font-size: 2rem;
}

/* Research & Development */
.research-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.research-text {
    flex: 1;
}

.research-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--light-green);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: var(--mid-green);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Pipeline Table */
.pipeline-section {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pipeline-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1rem;
}

.pipeline-table thead {
    background: linear-gradient(to right, var(--dark-green), var(--mid-green));
    color: white;
}

.pipeline-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
}

.pipeline-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--medium-gray);
    vertical-align: middle;
}

.pipeline-table tr:last-child td {
    border-bottom: none;
}

.pipeline-table tbody tr:hover {
    background-color: var(--light-gray);
}

.phase {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-preclinical {
    background-color: #ffebcc;
    color: #cc6600;
}

.phase-clinical1 {
    background-color: #d4edda;
    color: #155724;
}

.phase-clinical2 {
    background-color: #cce5ff;
    color: #004085;
}

.phase-clinical3 {
    background-color: #d1ecf1;
    color: #0c5460;
}

.phase-registration {
    background-color: #f8d7da;
    color: #721c24;
}

/* Manufacturing */
.manufacturing-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.manufacturing-text {
    flex: 1;
}

.manufacturing-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.facilities-list {
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 30px;
}

.facilities-list li {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
}

.facilities-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mid-green);
    font-weight: bold;
    font-size: 1.3rem;
    top: -2px;
}

/* Quality & Compliance */
.quality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quality-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(220, 231, 141, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--dark-green);
    font-size: 2rem;
}

/* Global Presence */
.global-content {
    background-color: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.global-stat {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--light-gray);
}

.global-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 10px;
    line-height: 1;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.country-tag {
    background-color: white;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: var(--dark-gray);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.country-tag:hover {
    border-color: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Careers Section */
.careers-content {
    background-color: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.career-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.career-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--pharma-blue);
    transition: var(--transition);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.career-category {
    display: inline-block;
    background-color: var(--pale-lime);
    color: var(--dark-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* News & Media */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.news-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 220px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 3rem;
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 0.9rem;
    color: var(--mid-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Investors Section */
.investors-content {
    background-color: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.financial-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.financial-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-gray);
    border-top: 5px solid var(--light-green);
}

.financial-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 10px;
    line-height: 1;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pale-lime), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--mid-green);
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--pale-lime);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    display: block;
}

.footer-col a:hover {
    color: var(--pale-lime);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--mid-green);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 80px 0;
    }

    .about-content,
    .research-content,
    .manufacturing-content {
        flex-direction: column;
    }

    .research-stats {
        width: 100%;
    }

    .pipeline-table {
        display: block;
        overflow-x: auto;
    }

    .pipeline-section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 93px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 93px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 0 0 25px 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        justify-content: center;
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 0 0;
        background-color: var(--light-gray);
    }

    .dropdown-content a {
        padding: 12px 0;
    }

    .nav-dropdown:hover .dropdown-content {
        display: block;
    }

    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .products-grid,
    .therapeutic-areas,
    .mission-values,
    .quality-cards {
        grid-template-columns: 1fr;
    }

    .highlight-grid,
    .research-stats,
    .global-stats,
    .financial-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid,
    .career-opportunities {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    section {
        padding: 70px 0;
    }

    .container {
        padding: 0 20px;
    }

    .highlight-grid,
    .research-stats,
    .global-stats,
    .financial-highlights {
        grid-template-columns: 1fr;
    }

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

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

    .logo-img {
        height: 55px;
    }

    .logo-main {
        font-size: 1.6rem;
    }
}

