/* GCN Footer Section */
.gcn-footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 0 2rem;
}

.footer-news {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--white);
}

.footer-subscribe {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 600px;
}

.footer-subscribe input {
    flex: 2;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--white);
    outline: none;
}

.footer-subscribe input::placeholder {
    color: var(--white);
    opacity: 0.8;
}

.footer-subscribe button {
    flex: 1;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: none;
    background: var(--white);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.footer-subscribe button:hover,
.footer-subscribe button:focus {
    background: var(--accent);
    color: var(--white);
}

.footer-letters {
    display: flex;
    gap: 4rem;
    margin: 3rem 0 0 0;
}

.footer-letter {
    font-size: 6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.footer-address,
.footer-contact,
.footer-socials {
    font-size: 1.3rem;
    margin-bottom: 0rem;
    color: var(--white);
}

.footer-address strong,
.footer-contact strong,
.footer-socials strong {
    font-weight: 700;
    margin-bottom: 0rem;
    display: block;
}

.footer-address {
    line-height: 1.3;
    margin-top: -0.3rem;
}

.footer-contact {
    margin-top: -0.2rem;
}

.footer-socials {
    margin-top: -0.2rem;
}

.footer-socials a {
    display: inline-flex;
    margin-right: 1.5rem;
    margin-top: 0rem;
}

.footer-socials img {
    width: 2.2rem;
    height: 2.2rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.2);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    color: var(--white);
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
    .footer-letters {
        gap: 2rem;
    }
    .footer-letter {
        font-size: 3.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        font-size: 1rem;
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 600px) {
    .gcn-footer {
        padding: 2rem 0 1rem 0;
    }
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .footer-subscribe input,
    .footer-subscribe button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .footer-letters {
        gap: 1rem;
        margin: 2rem 0 0 0;
    }
    .footer-letter {
        font-size: 2rem;
    }
    .footer-address,
    .footer-contact,
    .footer-socials {
        font-size: 1rem;
    }
    .footer-socials img {
        width: 1.2rem;
        height: 1.2rem;
    }
}

/* Footer Section */
.footer-section {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}
.footer-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-heading {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 600px;
}
.footer-newsletter-form input {
    flex: 2;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--white);
    outline: none;
}
.footer-newsletter-form input::placeholder {
    color: var(--white);
    opacity: 0.8;
}
.footer-newsletter-form button {
    flex: 1;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: none;
    background: var(--white);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.footer-newsletter-form button:hover,
.footer-newsletter-form button:focus {
    background: var(--accent);
    color: var(--white);
}
.footer-letters {
    display: flex;
    gap: 4rem;
    margin: 3rem 0 0 0;
}
.footer-letters span {
    font-size: 6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}
.footer-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}
.footer-info {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.footer-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.footer-social-block {
    margin-top: 1.5rem;
}
.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.footer-social-icons img {
    width: 2.2rem;
    height: 2.2rem;
}
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    .footer-letters {
        gap: 2rem;
    }
    .footer-letters span {
        font-size: 3.5rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        font-size: 1rem;
        padding-top: 1rem;
    }
}

@media (max-width: 600px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .footer-newsletter-form input,
    .footer-newsletter-form button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .footer-letters {
        gap: 1rem;
        margin: 2rem 0 0 0;
    }
    .footer-letters span {
        font-size: 2rem;
    }
    .footer-info {
        font-size: 1rem;
    }
    .footer-social-icons img {
        width: 1.2rem;
        height: 1.2rem;
    }
}
/* Movement CTA Section */
.movement-section {
    background: var(--white);
    padding: 4rem 0 4rem 0;
}
.movement-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.movement-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: left;
}
.movement-desc {
    font-size: 1.2rem;
    color: var(--neutral);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-align: left;
}
.movement-btns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.movement-btn {
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 0.2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    border: none;
}
.movement-btn:hover,
.movement-btn:focus {
    background: var(--accent);
    color: var(--white);
}

@media (max-width: 900px) {
    .movement-heading {
        font-size: 2.2rem;
    }
    .movement-btns {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .movement-section {
        padding: 2rem 0 2rem 0;
    }
    .movement-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .movement-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .movement-btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
}
/* Who We Serve Section */
.serve-section {
    background: var(--white);
    padding: 4rem 0 4rem 0;
}
.serve-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}
.serve-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: center;
}
.serve-cards {
    display: flex;
    gap: 1.5rem;
    overflow: visible;
    width: 100%;
    padding-bottom: 2rem;
    justify-content: center;
    align-items: center;
    animation: slideRightToLeft 20s linear infinite;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.serve-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 1.5rem;
    min-width: 700px;
    max-width: 700px;
    width: 700px;
    height: 400px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 32px rgba(12, 74, 146, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(.77,0,.18,1);
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

/* Remove hover effects - cards now show content permanently */
.serve-card-inner {
    display: flex;
    width: 100%;
    height: 100%;
}
.serve-card img {
    width: 280px;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem 0 0 1.5rem;
    display: block;
    transition: filter 0.3s, transform 0.6s cubic-bezier(.77,0,.18,1);
    z-index: 1;
}
/* Remove hover image effects - images now permanently styled */
.serve-card-overlay {
    width: 420px;
    height: 100%;
    background: #0C4A92;
    color: #fff;
    border-radius: 0 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    opacity: 1;
    transition: all 0.6s cubic-bezier(.77,0,.18,1);
    box-sizing: border-box;
    pointer-events: auto;
    overflow: hidden;
    position: static;
}
/* Remove hover overlay effects - overlays now permanently visible */
.serve-card-overlay h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    white-space: normal;
    line-height: 1.2;
}
.serve-card-overlay p {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 1.5rem 0;
    white-space: normal;
    line-height: 1.4;
    opacity: 0.95;
}
.serve-card-btn {
    display: inline-block;
    background: #B08A00;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.serve-card-btn:hover,
.serve-card-btn:focus {
    background: #0C4A92;
    color: #fff;
}

/* Card entrance animation */
.serve-card:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.serve-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.serve-card:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.serve-card:nth-child(4) {
    animation: slideInUp 0.6s ease-out 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 900px) {
    .serve-card {
        min-width: 450px;
        max-width: 450px;
        width: 450px;
        height: 300px;
    }
    .serve-card img {
        width: 200px;
        border-radius: 1.2rem 0 0 1.2rem;
    }
    .serve-card-overlay {
        width: 250px;
        border-radius: 0 1.2rem 1.2rem 0;
        padding: 2rem 1.5rem;
    }
    .serve-card-overlay h4 {
        font-size: 1.5rem;
    }
    .serve-card-overlay p {
        font-size: 0.9rem;
    }
    .serve-cards {
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .serve-heading {
        font-size: 1.3rem;
    }
    .serve-card {
        min-width: 340px;
        max-width: 340px;
        width: 340px;
        height: 240px;
    }
    .serve-card img {
        width: 160px;
    }
    .serve-card-overlay {
        width: 180px;
        padding: 1.5rem 1rem;
    }
    .serve-card-overlay h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .serve-card-overlay p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .serve-card-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    .serve-cards {
        gap: 0.5rem;
        overflow-x: scroll;
        justify-content: flex-start;
        animation: none; /* Disable animation on mobile for better UX */
    }
}

/* Why We Exist Section */
.why-section {
    background: var(--white);
    padding: 4rem 0 4rem 0;
}
.why-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.why-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: left;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}
.why-desc {
    font-size: 1.2rem;
    color: var(--neutral);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-align: left;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}
.why-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.why-image {
    width: 100%;
    margin: 2rem 0 0 0;
}
.why-image {
    width: 100%;
    margin: 2rem 0 0 0;
    padding-left: 0;
}
.why-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin-left: 0;
    padding-left: 0;
}

@media (max-width: 900px) {
    .why-heading {
        font-size: 2.2rem;
    }
    .why-desc {
        font-size: 1rem;
    }
    .why-image img {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .why-section {
        padding: 2rem 0 2rem 0;
    }
    .why-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .why-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .why-image img {
        width: 100%;
        max-width: 380px;
        height: 200px;
        object-fit: cover;
    }
}
/* Mission Section */
.mission-section {
    background: var(--primary);
    padding: 4rem 0 4rem 0;
}
.mission-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.mission-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.mission-img img {
    width: 400px;
    height: 340px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    background: var(--white);
}
.mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 300px;
}
.mission-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
}
.mission-desc {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}
.mission-btn {
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 0.2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    border: none;
}
.mission-btn:hover,
.mission-btn:focus {
    background: var(--accent);
    color: var(--white);
    outline: none;
}

@media (max-width: 900px) {
    .mission-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    .mission-img {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .mission-img img {
        width: 260px;
        height: 180px;
    }
    .mission-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .mission-section {
        padding: 2rem 0 2rem 0;
    }
    .mission-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .mission-img img {
        width: 120px;
        height: 90px;
    }
    .mission-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .mission-btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
}
/* About Section */
.about-section {
    background: var(--white);
    padding: 5rem 0 5rem 0;
}
.about-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}
.about-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.about-images {
    display: flex;
    gap: 2rem;
}
.about-images img {
    width: 260px;
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 300px;
    margin-top: 5.5rem;
}
.about-desc {
    font-size: 1.2rem;
    color: var(--neutral);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}
.about-btn {
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 0.2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
}
.about-btn:hover,
.about-btn:focus {
    background: var(--accent);
    color: var(--white);
    outline: none;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    .about-left, .about-right {
        align-items: center;
        text-align: center;
    }
    .about-heading {
        font-size: 2.2rem;
    }
    .about-images {
        gap: 1rem;
    }
    .about-images img {
        width: 180px;
        height: 140px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 2rem 0 2rem 0;
    }
    .about-left {
        align-items: center;
    }
    .about-right {
        margin-top: 0;
    }
    .about-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    .about-images {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    .about-images img {
        width: 140px;
        height: 110px;
    }
    .about-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .about-btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
}
/* About Page - Cards Section */
.about-cards-section {
    padding: 4rem 0;
    background: var(--white);
    margin-bottom: 4rem;
}
.about-cards-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0 2rem 2rem;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
.about-card {
    min-width: 320px;
    max-width: 380px;
    background: #0C4A92;
    color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(12,74,146,0.18);
    border: 2px solid #B08A00;
    padding: 2rem 1.5rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-card.visible[data-index="1"] {
    transition-delay: 0.1s;
}
.about-card.visible[data-index="2"] {
    transition-delay: 0.2s;
}
.about-card.visible[data-index="3"] {
    transition-delay: 0.3s;
}
.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.about-card-body {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}
/* Responsive adjustments for mobile */
@media (max-width: 900px) {
    .navbar {
        padding: 1.5rem 1rem 0 1rem;
    }
    .nav-logo img {
        height: 48px;
        width: 48px;
    }
    .hero {
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-image img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.5rem 0 0.5rem;
    }
    .nav-logo {
        margin-bottom: 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: flex-start;
        margin-top: 0.5rem;
    }
    .hero {
        flex-direction: column;
        min-height: 50vh;
        padding: 1rem 0.5rem;
    }
    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .hero-image {
        width: 100%;
        justify-content: center;
    }
    .hero-image img {
        width: 120px;
        height: 120px;
    }
}
.navbar {
    background: #fff !important;
    color: #111;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem 0 4rem;
    min-height: 80px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.nav-logo img {
    height: 88px;
    width: 88px;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none !important;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

@media (max-width: 900px) {
    .hamburger-menu {
        display: flex !important;
    }
}

.hamburger-menu:hover {
    transform: scale(1.05);
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background-color: var(--accent);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background-color: var(--accent);
}

.navbar-links li a {
    font-size: 2rem;
    color: #111111;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}
.navbar-links li a.active {
    font-weight: 500;
    color: #B08A00;
}

/* Hero Section */
.hero {
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 0 4rem;
}
.hero-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--white);
    letter-spacing: 2px;
}
.hero-content p {
    display: none;
}
.hero-content .btn {
    display: none;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .navbar {
        padding: 1.5rem 2rem 0 2rem;
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }
    
    .nav-logo {
        order: 1;
        z-index: 1001;
        flex: 0 0 auto;
    }
    
    .hamburger-menu {
        display: flex !important;
        order: 3;
        z-index: 1001;
        flex: 0 0 auto;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 1000;
        border-radius: 0 0 0.5rem 0.5rem;
        order: 2;
    }
    
    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: var(--primary);
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.2s, color 0.2s;
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: #f8f9fa;
        color: var(--accent);
    }
    
    .hero {
        padding: 0 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-image img {
        width: 220px;
        height: 220px;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 600px) {
    .navbar {
        padding: 1rem 1.5rem 0 1.5rem;
    }
    
    .nav-logo img {
        height: 70px;
        width: 70px;
    }
    
    .hamburger-menu span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-links li a {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem 0 1rem;
    }
    
    .nav-logo img {
        height: 60px;
        width: 60px;
    }
    
    .hamburger-menu {
        padding: 0.25rem;
    }
    
    .hamburger-menu span {
        width: 22px;
        height: 2px;
    }
}

@media (max-width: 600px) {
    .hero {
        flex-direction: column;
        min-height: 60vh;
        padding: 1rem;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-image img {
        width: 160px;
        height: 160px;
    }
}
.navbar {
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    font-size: 1.25rem;
}
.nav-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}
.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.nav-links li a:hover,
.nav-links li a:focus {
    background: var(--accent);
    color: var(--white);
    outline: none;
}

/* Hero Section */
.hero {
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 3rem 1rem 2rem 1rem;
}
.hero-content {
    width: 100%;
    text-align: left;
    margin-bottom: 2rem;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
}
.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
}
.hero-image img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
        padding: 4rem 3rem 3rem 3rem;
    }
    .hero-content {
        width: 50%;
        margin-bottom: 0;
        text-align: left;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
    .hero-image {
        width: 50%;
        justify-content: center;
    }
    .hero-image img {
        width: 340px;
        height: 340px;
    }
}
/* styles.css - Ghana Creators Network */

/* Theme colors */
:root {
    --primary: #0C4A92;
    --accent: #B08A00;
    --neutral: #111111;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--neutral);
    overflow-x: hidden;
    max-width: 100vw;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Mobile Container Alignment */
@media (max-width: 600px) {
    .footer-main,
    .footer-section,
    .about-container,
    .about-section,
    .about-cards-section,
    .mission-container,
    .mission-section,
    .serve-container,
    .serve-section,
    .why-container,
    .why-section,
    .movement-container,
    .movement-section,
    .blog-container,
    .blog-section,
    .contact-container,
    .contact-section,
    .contact-hero,
    .article-container,
    .article-section,
    .hero,
    .hero-content,
    .events-container,
    .events-section,
    main,
    section,
    .main-content {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Navbar styles */
.navbar {
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.nav-logo img {
    height: 88px;
    width: 88px;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
}
/* Homepage navbar links */
.nav-links li a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.nav-links li a.active {
    color: #B08A00;
}
.nav-links li a:hover,
.nav-links li a:focus {
    background: #eee;
    color: #111;
    outline: none;
}

@media (min-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
    }
    .nav-logo {
        margin-bottom: 0;
    }
    .nav-logo img {
        height: 88px;
        width: 88px;
    }
    .nav-links {
        flex-direction: row;
        width: auto;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .nav-logo img {
        height: 64px;
        width: 64px;
    }
}

@media (max-width: 600px) {
    .nav-logo img {
        height: 48px;
        width: 48px;
    }
}
/* About Page Hero Section */
.about-hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}
.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #B08A00;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 48px;
}
.about-hero-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1000px;
}
.about-hero-left, .about-hero-right {
    flex: 1;
    font-size: 1.25rem;
    color: #111;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}
@media (max-width: 900px) {
    .about-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    .about-hero-content {
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
    }
    .about-hero-left, .about-hero-right {
        font-size: 1rem;
    }
}
/* Contact Page Styles */
.contact-hero {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}
.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
.contact-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}
.contact-section {
    padding: 4rem 2rem;
    background: var(--white);
}
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-info p {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.4;
}
.contact-details p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.contact-details strong {
    color: var(--primary);
}
.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: #a07800;
}
@media (max-width: 900px) {
    .contact-title {
        font-size: 2.5rem;
    }
    .contact-subtitle {
        font-size: 1rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info h2 {
        font-size: 2rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
}
/* Contact Hero Section */
.contact-hero {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: var(--white);
}
.contact-hero-title {
    color: #B08A00;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}
.contact-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.breadcrumb-home {
    color: #bdbdbd;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-home:hover {
    color: #888;
    cursor: pointer;
}
.breadcrumb-separator {
    color: #bdbdbd;
}
.breadcrumb-contact {
    color: #111;
    font-weight: 700;
}
.breadcrumb-contact.active {
    color: #111;
    font-weight: 700;
}
.contact-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.contact-cta-btn {
    background: #dddddd;
    color: #111;
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s;
}
.contact-cta-btn:hover {
    background: #cccccc;
}
.contact-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}
.video-container {
    width: 90vw;
    max-width: 1200px;
    height: 650px;
    margin: 0 auto 2.5rem auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

@media (max-width: 900px) {
    .video-container {
        width: 95vw;
        height: 420px;
    }
}

@media (max-width: 600px) {
    .video-container {
        width: 98vw;
        height: 280px;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
}
.contact-info-section {
    padding: 2rem 0 3rem 0;
    background: var(--white);
}
.contact-info-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}
.contact-info-left {
    flex: 2;
}
.contact-info-heading {
    color: #B08A00;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.contact-info-block {
    margin-bottom: 1.5rem;
}
.contact-email {
    font-weight: 700;
    color: #111;
}
.contact-info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
}
.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.2rem;
}
.contact-socials a img {
    width: 24px;
    height: 24px;
}
@media (max-width: 900px) {
    .contact-video-placeholder {
        height: 180px;
    }
    .contact-info-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    text-align: center;
    padding: 4rem 2rem 3rem 2rem;
    background: var(--white);
}

.blog-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.blog-subtitle {
    font-size: 1.5rem;
    color: var(--neutral);
    font-weight: 400;
    margin: 0;
}

.blog-grid-section {
    padding: 2rem 0 4rem 0;
    background: var(--white);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    align-items: start;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-read-time {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--neutral);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-container {
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .blog-hero {
        padding: 2rem 1rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .blog-image {
        height: 200px;
    }
}

/* Individual Blog Post Styles */
.article-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 3rem 0 2rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #666;
}

.article-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
    color: var(--accent);
}

.article-breadcrumb span {
    margin: 0 0.5rem;
    color: #999;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-read-time,
.article-date {
    color: #777;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.article-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--neutral);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 3rem;
    font-weight: 400;
}

.article-hero-image {
    text-align: center;
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #f8f9ff;
}

.article-hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.article-hero-image:hover img {
    transform: scale(1.02);
}

.article-content {
    padding: 4rem 0;
    background: var(--white);
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.article-body {
    max-width: none;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
    font-weight: 400;
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.article-body h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neutral);
    margin: 3rem 0 1.5rem 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.5rem;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neutral);
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.article-body h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.article-body strong {
    color: var(--neutral);
    font-weight: 700;
}

.article-quote {
    background: linear-gradient(135deg, var(--primary) 0%, #0a3d7a 100%);
    color: var(--white);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 16px;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    box-shadow: 0 8px 32px rgba(12, 74, 146, 0.2);
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.article-quote::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2.5rem;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #0a3d7a;
}

.article-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid #f0f0f0;
}

.article-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 1rem;
}

.article-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(12, 74, 146, 0.3);
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(176, 138, 0, 0.4);
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.related-articles {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.related-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-articles a {
    color: var(--neutral);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.related-articles a:hover {
    color: var(--primary);
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.share-btn {
    display: block;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.2s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.back-to-blog {
    padding: 2rem 0;
    background: #f8f9ff;
    border-top: 1px solid #f0f0f0;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--accent);
}

/* Responsive Design for Article Pages */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 1rem;
    }
    
    .share-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .article-container {
        padding: 0 1rem;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.8rem;
    }
    
    .article-body h3 {
        font-size: 1.4rem;
    }
    
    .article-quote {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .article-meta {
        gap: 1rem;
    }
    
    .article-hero-image {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 2rem 0 1rem 0;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
    
    .article-quote {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .article-quote::before {
        font-size: 3rem;
        top: -0.3rem;
        left: 1rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .article-cta {
        padding: 2rem;
    }
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 5rem 0;
    text-align: center;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.events-main-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.events-subtitle {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.why-events-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-events-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.why-events-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 3rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.attend-event-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(12, 74, 146, 0.3);
}

.attend-event-btn:hover {
    background: #0a3d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(12, 74, 146, 0.4);
}

.events-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
}

.event-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.event-card:nth-child(1) {
    transform: rotate(-2deg);
}

.event-card:nth-child(2) {
    transform: rotate(1deg);
}

.event-card:nth-child(3) {
    transform: rotate(-1deg);
}

.event-card:nth-child(4) {
    transform: rotate(2deg);
}

.event-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.card-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--neutral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral);
    margin-bottom: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.card-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.upcoming-events-section {
    background: #f8f9ff;
    padding: 4rem 0;
    border-top: 1px solid #e0e0e0;
}

.upcoming-events-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: left;
}

.upcoming-events-message {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    max-width: 800px;
}

.events-cta-section {
    background: var(--white);
    padding: 5rem 0;
    text-align: left;
}

.events-cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neutral);
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 800px;
}

.events-cta-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
}

.events-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.events-cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.events-cta-btn.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(12, 74, 146, 0.3);
}

.events-cta-btn.primary:hover {
    background: #0a3d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(12, 74, 146, 0.4);
}

.events-cta-btn.secondary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(12, 74, 146, 0.3);
}

.events-cta-btn.secondary:hover {
    background: #0a3d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(12, 74, 146, 0.4);
}

.registration-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a3d7a 100%);
    padding: 5rem 0;
    color: var(--white);
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.registration-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.registration-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.5;
}

.registration-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--neutral);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    color: var(--neutral);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 146, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--neutral);
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(176, 138, 0, 0.3);
}

.submit-btn:hover {
    background: #956f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(176, 138, 0, 0.4);
}

/* Responsive Design for Events Page */
@media (max-width: 1024px) {
    .why-events-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .events-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .event-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .events-main-title {
        font-size: 2.5rem;
    }
    
    .events-subtitle {
        font-size: 1.2rem;
    }
    
    .why-events-title {
        font-size: 2.5rem;
    }
    
    .events-cta-title {
        font-size: 2.2rem;
    }
    
    .events-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .events-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .events-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .events-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        padding: 2rem;
    }
    
    .event-card:nth-child(1),
    .event-card:nth-child(2),
    .event-card:nth-child(3),
    .event-card:nth-child(4) {
        transform: rotate(0deg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .registration-form {
        padding: 2rem;
    }
    
    .registration-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .events-hero {
        padding: 3rem 0;
    }
    
    .events-container {
        padding: 0 1rem;
    }
    
    .events-main-title {
        font-size: 2rem;
    }
    
    .events-subtitle {
        font-size: 1rem;
    }
    
    .why-events-title {
        font-size: 2rem;
    }
    
    .event-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
}

/* Creators Showcase Section */
.creators-showcase-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #fff8f0 100%);
    overflow: hidden;
    position: relative;
}

.creators-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.creators-showcase-content {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.creators-showcase-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neutral);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.creators-showcase-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.creators-showcase-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--neutral) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.creators-showcase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary) 0%, #0a3d7a 100%);
}

.creators-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 4rem 0;
    perspective: 1200px;
    transform-style: preserve-3d;
    animation: continuousRotate 20s linear infinite;
}

.creator-card {
    width: 120px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.creator-card:nth-child(1) { transform: rotateY(-30deg) translateZ(50px); }
.creator-card:nth-child(2) { transform: rotateY(-20deg) translateZ(80px); }
.creator-card:nth-child(3) { transform: rotateY(-10deg) translateZ(100px); }
.creator-card:nth-child(4) { transform: rotateY(0deg) translateZ(120px); }
.creator-card:nth-child(5) { transform: rotateY(10deg) translateZ(100px); }
.creator-card:nth-child(6) { transform: rotateY(20deg) translateZ(80px); }
.creator-card:nth-child(7) { transform: rotateY(30deg) translateZ(50px); }

.creator-card:hover {
    transform: scale(1.1) rotateY(0deg) translateZ(150px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.creator-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.creator-card:hover img {
    transform: scale(1.05);
}

.creators-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral);
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes continuousRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .creators-gallery {
        gap: 1rem;
        animation: continuousRotate 25s linear infinite;
    }
    
    .creator-card {
        width: 100px;
        height: 120px;
    }
    
    .creators-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .creators-showcase-section {
        padding: 4rem 0;
    }
    
    .creators-showcase-title {
        font-size: 2.5rem;
    }
    
    .creators-showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .creators-gallery {
        flex-wrap: wrap;
        animation: none;
        transform: none;
        perspective: none;
    }
    
    .creator-card {
        width: 80px;
        height: 100px;
        position: static;
        transform: none !important;
    }
    
    .creator-card:hover {
        transform: scale(1.05) !important;
    }
    
    .creators-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .creators-showcase-title {
        font-size: 2rem;
    }
    
    .creators-showcase-subtitle {
        font-size: 1rem;
    }
    
    .creators-showcase-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .creator-card {
        width: 70px;
        height: 85px;
    }
}

/* About Page - What We Do Section Enhanced Styling */
.about-what-we-do {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.about-what-heading {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-what-subheading {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-what-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.about-what-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(12, 74, 146, 0.2);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-what-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-what-card:hover::before {
    transform: scaleX(1);
}

.about-what-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(12, 74, 146, 0.3);
    border-color: var(--accent);
}

.about-what-card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-what-card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-what-card:nth-child(3) {
    animation-delay: 0.3s;
}

.about-what-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-what-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-what-card:hover h3::after {
    width: 80px;
}

.about-what-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-what-card * {
    color: rgba(255, 255, 255, 0.9) !important;
}

.about-what-card h3 {
    color: var(--white) !important;
}

/* Ensure all text content in cards is white */
.about-what-card,
.about-what-card p,
.about-what-card span,
.about-what-card div,
.about-what-card li,
.about-what-card ul,
.about-what-card strong,
.about-what-card em {
    color: rgba(255, 255, 255, 0.9) !important;
}

.about-what-card ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.about-what-card ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.about-what-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Card entrance animation */
@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-what-card {
    animation: cardFadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Responsive design for What We Do cards */
@media (max-width: 1024px) {
    .about-what-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .about-what-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-what-we-do {
        padding: 3rem 0;
    }
    
    .about-what-heading {
        font-size: 2.5rem;
    }
    
    .about-what-subheading {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .about-what-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .about-what-card {
        padding: 2rem;
    }
    
    .about-what-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-what-heading {
        font-size: 2rem;
    }
    
    .about-what-subheading {
        font-size: 1rem;
    }
    
    .about-what-card {
        padding: 1.5rem;
    }
    
    .about-what-card h3 {
        font-size: 1.3rem;
    }
    
    .about-what-card p,
    .about-what-card ul li {
        font-size: 1rem;
    }
}

/* About Page - Movement Section Enhanced Styling */
.about-movement-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-movement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(176, 138, 0, 0.03) 0%, rgba(12, 74, 146, 0.03) 100%);
    z-index: 1;
}

.about-movement-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-movement-heading {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--neutral);
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.about-movement-heading::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 0.5s both;
}

.about-movement-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #0a3d7a 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(12, 74, 146, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-top: 1rem;
}

.about-movement-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.about-movement-btn:hover::before {
    left: 100%;
}

.about-movement-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(12, 74, 146, 0.4);
    background: linear-gradient(135deg, var(--accent) 0%, #956f00 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Responsive Design for Movement Section */
@media (max-width: 768px) {
    .about-movement-section {
        padding: 4rem 0;
    }
    
    .about-movement-content {
        padding: 0 1rem;
    }
    
    .about-movement-heading {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .about-movement-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-movement-section {
        padding: 3rem 0;
    }
    
    .about-movement-heading {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .about-movement-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}
