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

:root {
    --primary: #183842;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    background: var(--white);
}

/* NESTED DROPDOWNS FOR NAVIGATION */
.nav-bold .dropdown-content {
    display: none !important;
    position: absolute;
    background-color: var(--primary);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    margin-top: 0.5rem;
    flex-direction: column;
}
.nav-bold .dropdown-content.show {
    display: flex !important;
}
.nav-bold .dropdown-content a {
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}
.nav-bold .dropdown-content a:hover {
    background-color: var(--gold);
    color: var(--primary);
}
/* Removed unused nested dropdown style for Flickr/YouTube */
.nav-bold .nested-dropdown-content {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--primary);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    flex-direction: column;
}
.nav-bold .nested-dropdown-content.show {
    display: flex !important;
}
.nav-bold .nested-dropdown-content a {
    padding: 0.8rem 1rem;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    font-weight: 800;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header */
.header-bold {
    background: var(--primary);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo-bold {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-bold {
    display: flex;
    gap: 3rem;
}

.nav-bold a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

/* Dropdown menu */
.nav-bold .dropdown {
    position: relative;
    display: inline-block;
}

.nav-bold .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.nav-bold .dropdown-content a {
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: background-color 0.3s, color 0.3s;
}

.nav-bold .dropdown-content a:hover {
    background-color: var(--gold);
    color: var(--primary);
}

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

.nav-bold .dropdown > a {
    cursor: pointer;
}

.nav-bold a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-bold a:hover::after {
    width: 100%;
}

.nav-bold a:hover {
    color: var(--gold);
}

.nav-bold.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: var(--primary);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 999;
}

/* Hero */
.hero-bold {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0a1a1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-two-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    padding: 0 3rem;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-content-bold {
    text-align: left;
    color: var(--white);
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease 0.3s backwards;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--gold);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(212, 175, 55, 0.15),
        transparent
    );
    animation: shine 4s infinite;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(1.1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-content-bold h1 {
    font-size: 7rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--gold);
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content-bold p {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Mission */
.mission-bold {
    padding: 8rem 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #333;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold);
    border-left: 5px solid var(--gold);
    padding-left: 2rem;
    line-height: 1.6;
    font-family: 'Merriweather', serif;
}

.mission-image {
    position: relative;
    max-width: 500px;
}

.mission-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--gold);
    transition: transform 0.3s;
}

.mission-image:hover img {
    transform: translate(-10px, -10px);
}

/* Projects */
.projects-bold {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 0;
}

.projects-bold h2 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

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

.project-card-bold {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.project-card-bold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

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

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

.project-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.project-card-bold h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.project-card-bold p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.project-stats span {
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-image {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 5px;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s;
}

.project-card-bold:hover .project-image img {
    transform: scale(1.1);
}

/* Projects Gallery */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Page Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-gallery .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/* Reach */
.reach-bold {
    padding: 8rem 0;
    background: var(--gold);
}

.reach-bold h2 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

.reach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.reach-item {
    text-align: center;
    transition: transform 0.3s;
}

.reach-item:hover {
    transform: translateY(-10px);
}

.reach-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.reach-label {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Connect */
.connect-bold {
    padding: 8rem 0;
    text-align: center;
    background: var(--white);
}

.connect-bold h2 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.connect-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666;
}

.connect-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.connect-btn {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 4rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    display: inline-block;
}

.connect-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-bold {
    display: flex;
    gap: 2rem;
}

.social-bold a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.social-bold a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.social-bold a:hover::after {
    width: 100%;
}

.social-bold a:hover {
    color: var(--gold);
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.quick-link-card {
    background: var(--white);
    padding: 3rem 2rem;
    border: 3px solid var(--gold);
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s;
    text-align: center;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: var(--gold);
    color: var(--primary);
}

.quick-link-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
}

.quick-link-card:hover h3 {
    color: var(--white);
}

.quick-link-card p {
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.6;
}

.quick-link-card:hover p {
    color: var(--white);
}

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

.hero-tagline-main {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 1rem;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--gold);
    font-style: normal;
}

/* Awards Home Grid */
.awards-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.award-home-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0a1a1f 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

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

.award-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.award-home-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.award-home-card p {
    color: var(--white);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-bold {
    background: rgba(24, 56, 66, 0.05);
    padding: 3rem;
    border-radius: 10px;
}

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

.form-group-bold label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group-bold input,
.form-group-bold textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group-bold input:focus,
.form-group-bold textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Footer */
.footer-bold {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content-bold h1 {
        font-size: 5.5rem;
    }
    
    .mission-text h2,
    .projects-bold h2,
    .reach-bold h2,
    .connect-bold h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-two-column {
        gap: 2rem;
        padding: 0 2rem;
    }

    .hero-content-bold h1 {
        font-size: 5rem;
    }
    
    .hero-image-frame {
        max-width: 350px;
    }
    
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-gallery .gallery-item img {
        height: 250px;
    }
    
    .mission-text h2,
    .projects-bold h2,
    .reach-bold h2,
    .connect-bold h2 {
        font-size: 3rem;
    }
    
    .mission-bold,
    .projects-bold,
    .reach-bold,
    .connect-bold {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-bold .container {
        padding: 0 1.5rem;
    }

    .hero-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .hero-content-bold {
        text-align: center;
    }

    .hero-content-bold h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-content-bold p {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-image-frame {
        max-width: 280px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    
    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-gallery .gallery-item img {
        height: 220px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-image img {
        box-shadow: 10px 10px 0 var(--gold);
    }

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

    .reach-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-bold {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-bold.active {
        display: flex;
        max-height: 500px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-bold .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        margin-top: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-bold .dropdown-content a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .mission-text h2,
    .projects-bold h2,
    .reach-bold h2,
    .connect-bold h2 {
        font-size: 2.5rem;
    }

    .large-text {
        font-size: 1.2rem;
    }

    blockquote {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }

    .reach-number {
        font-size: 3.5rem;
    }

    .project-number {
        font-size: 3rem;
    }

    .project-card-bold h3 {
        font-size: 1.5rem;
    }

    .connect-btn {
        padding: 1.2rem 3rem;
        font-size: 1rem;
    }

    .social-bold {
        flex-direction: column;
        gap: 1rem;
    }

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

    .awards-home-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-bold,
    .projects-bold,
    .reach-bold,
    .connect-bold {
        padding: 5rem 0;
    }
    
    .project-card-bold {
        padding: 2rem;
    }
    
    .contact-form-bold {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content-bold h1 {
        font-size: 2.5rem;
        letter-spacing: 0;
    }
    
    .hero-content-bold p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle-main {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline-main {
        font-size: 0.95rem;
    }
    
    .hero-image-frame {
        max-width: 240px;
    }
    
    .mission-text h2,
    .projects-bold h2,
    .reach-bold h2,
    .connect-bold h2 {
        font-size: 2rem;
    }
    
    .large-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    blockquote {
        font-size: 1.1rem;
        padding-left: 1rem;
        border-left-width: 3px;
    }
    
    .reach-number {
        font-size: 2.5rem;
    }
    
    .reach-label {
        font-size: 1rem;
    }
    
    .project-number {
        font-size: 2.5rem;
    }
    
    .project-card-bold h3 {
        font-size: 1.3rem;
    }
    
    .project-card-bold p {
        font-size: 0.95rem;
    }
    
    .project-stats {
        gap: 0.8rem;
    }
    
    .project-stats span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .connect-bold h2 {
        font-size: 1.8rem;
    }
    
    .connect-text {
        font-size: 1.1rem;
    }
    
    .connect-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .social-bold a {
        font-size: 1rem;
    }
    
    .quick-link-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-link-card h3 {
        font-size: 1.5rem;
    }
    
    .quick-link-card p {
        font-size: 0.9rem;
    }
    
    .award-home-card {
        padding: 2rem 1.5rem;
    }
    
    .award-icon {
        font-size: 3rem;
    }
    
    .award-home-card h3 {
        font-size: 1.3rem;
    }
    
    .award-home-card p {
        font-size: 0.85rem;
    }
    
    .mission-bold,
    .projects-bold,
    .reach-bold,
    .connect-bold {
        padding: 4rem 0;
    }
    
    .logo-bold {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .header-bold {
        padding: 1rem 0;
    }
    
    .form-group-bold label {
        font-size: 0.85rem;
    }
    
    .form-group-bold input,
    .form-group-bold textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-content-bold h1 {
        font-size: 2rem;
    }
    
    .hero-image-frame {
        max-width: 200px;
    }
    
    .mission-text h2,
    .projects-bold h2,
    .reach-bold h2,
    .connect-bold h2 {
        font-size: 1.8rem;
    }
    
    .project-card-bold {
        padding: 1.5rem;
    }
    
    .logo-bold {
        font-size: 1rem;
    }
}
