:root {
    --black: #000000;
    --charcoal: #0e0e0e;
    --white: #f5f5f5;
    --gray: #d1d1d1;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(45, 45, 45, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.logo-image {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-links.active {
    transform: translateY(0);
}

.nav-links li a, .newsletter-toggle {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    will-change: color, transform;
}

.nav-links li a:hover, .newsletter-toggle:hover {
    color: var(--white);
}

.nav-links li a::after, .newsletter-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after, .newsletter-toggle:hover::after {
    width: 100%;
}

.newsletter-item {
    position: relative;
}

.newsletter-form {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--charcoal);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    width: 250px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter-form.hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    aria-hidden: true;
}

.newsletter-form:not(.hidden) {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    aria-hidden: false;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.5rem;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.newsletter-form button.loading {
    cursor: not-allowed;
    color: transparent;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    position: absolute;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--black);
}

.hidden {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.menu-icon, .x-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.x-icon.hidden {
    opacity: 0;
}

.menu-icon.hidden {
    opacity: 0;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    background: var(--black);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: brightness(50%);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-images img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Times New Roman', serif;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    will-change: transform, box-shadow;
    font-size: 0.8rem;
}

.cta-button.primary {
    background: var(--black);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-5px);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--black);
}

.section {
    padding: 7rem 2rem;
    background: var(--black);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-intro {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.skills-grid, .portfolio-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.skill-card, .portfolio-item, .blog-card {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform, box-shadow;
}

.skill-card:hover, .portfolio-item:hover, .blog-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--white);
}

.skill-card svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.skill-card:hover svg {
    transform: scale(1.1);
}

.skill-card h3, .portfolio-item h3,  .blog-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-link, .blog-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.portfolio-link:hover, .blog-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.contact-link svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

footer {
    text-align: center;
    padding: 3rem;
    background: var(--black);
    color: var(--gray);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        background: var(--charcoal);
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .navbar {
        padding: 0.5rem;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .newsletter-form {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 0;
        transform: none;
    }

    .newsletter-form.hidden {
        opacity: 0;
        transform: none;
        color: black;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 4rem 1rem;
    }
    
    .contact-links {
        gap: 0.5rem;
        padding: 0;
    }

    .contact-link {
        font-size: 0.8rem;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }

    .skills-grid, .portfolio-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0.8rem;
    }

    .contact-link {
        font-size: 0.75rem;
        max-width: 110px;
    }

    .contact-icon {
        width: 12px;
        height: 12px;
    }
}

#about {
    background: var(--black);
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.15) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.8;
}

#about .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    letter-spacing: 0.02em;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--white);
    border-radius: 1.5px;
}

#about .section-intro {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding: 0;
    border-left: none;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
    max-width: 800px;
    text-align: left;
    margin-bottom: 3rem;
    background:var(--black);
    padding: 1.5rem;
    border-left: 4px solid var(--black);
    border-radius: 4px;
}

.about-image-stack {
    position: relative;
    max-width: 450px;
    height: 320px;
    margin: 1.5rem auto 2rem;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(30, 144, 255, 0.3);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: var(--white);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

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

.skill-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.skill-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    #about {
        padding: 4rem 1rem;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about .section-intro {
        font-size: 0.95rem;
    }
    
    .about-image-stack {
        max-width: 350px;
        height: 250px;
    }

    .image-card {
        width: 60%;
        height: 70%;
    }

    .image-card.card-1 {
        transform: rotate(-3deg) translateX(-20%);
    }

    .image-card.card-2 {
        transform: rotate(3deg) translateX(20%);
    }

    .about-image-stack:hover .image-card.card-1 {
        transform: rotate(-1deg) translateX(-15%) translateZ(20px);
    }

    .about-image-stack:hover .image-card.card-2 {
        transform: rotate(1deg) translateX(15%) translateZ(10px);
    }
}

@media (max-width: 480px) {
    #about h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

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

#portfolio {
    padding: 7rem 2rem;
    background: var(--c
    black);
    overflow: hidden;
}

.portfolio-carousel {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

@supports (-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px)) {
    .navbar.scrolled {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

.portfolio-item {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 2.5rem;
    background: var(--charcoal);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: var(--white);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

@media (max-width: 768px) {
    .portfolio-item {
        padding: 2rem;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        padding: 1.5rem;
    }
}

.book-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.scroll-down {
    display: block;
    margin-top: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.chevron-down {
    width: 36px;
    height: 36px;
}

.chevron {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.chevron-1 {
    transform: translateY(0);
}

.chevron-2 {
    transform: translateY(6px);
    opacity: 0.6;
}

.chevron-3 {
    transform: translateY(12px);
    opacity: 0.3;
}

.scroll-down:hover .chevron-1 {
    transform: translateY(12px);
    opacity: 0.3;
}

.scroll-down:hover .chevron-2 {
    transform: translateY(6px);
    opacity: 0.6;
}

.scroll-down:hover .chevron-3 {
    transform: translateY(0);
    opacity: 1;
}

@keyframes chevronCycle {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    33% {
        transform: translateY(12px);
        opacity: 0.3;
    }
    66% {
        transform: translateY(6px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.chevron-1 {
    animation: chevronCycle 1.8s infinite;
}

.chevron-2 {
    animation: chevronCycle 1.8s infinite 0.6s;
}

.chevron-3 {
    animation: chevronCycle 1.8s infinite 1.2s;
}

/* Companies Section */
#companies {
    padding: 7rem 2rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

#companies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.15) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.7;
}

.companies-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.company-entry {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.company-entry:hover {
    transform: translateY(-8px);
}

.company-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.company-entry:hover::before {
    left: 100%;
}

.company-logo-wrapper {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    align-self: center;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-entry:hover .company-logo {
    transform: scale(1.1);
}

.company-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.company-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.company-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.company-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--white);
    transition: width 0.3s ease;
}

.company-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.company-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .companies-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .company-entry {
        padding: 1.2rem;
    }

    .company-logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .company-content h3 {
        font-size: 1.3rem;
    }

    .company-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .companies-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1rem 0;
    }

    .company-entry {
        padding: 1rem;
    }

    .company-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .company-content h3 {
        font-size: 1.2rem;
    }

    .company-content p {
        font-size: 0.9rem;
    }
}

.book-item {
    text-align: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

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

.book-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.book-item p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.book-item .book-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.book-item .book-link {
    margin-top: 0.5rem;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.book-item .book-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.book-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    flex: 0 0 auto; 
    max-width: 160px;
}

.contact-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--white);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-links {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }

    .contact-link {
        font-size: 0.85rem;
        max-width: 140px;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .contact-links {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
        align-items: center;
    }

    .contact-link {
        font-size: 0.8rem;
        max-width: 120px;
    }

    .contact-icon {
        width: 14px;
        height: 14px;
    }
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-entry {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.blog-entry:hover {
    transform: translateY(-5px);
}

.blog-content {
    flex: 1;
}

.blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.blog-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--white);
    transition: width 0.3s ease;
}

.blog-entry:hover .blog-title::after {
    width: 50px;
}

.blog-excerpt {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-date {
    font-weight: 400;
    color: var(--gray);
}

.blog-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--white);
    transition: width 0.3s ease;
}

.blog-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.blog-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .blog-list {
        gap: 2rem;
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .blog-excerpt {
        font-size: 1rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.4rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 6rem 2rem;
    }

    .skills-grid, .portfolio-grid, .book-grid, .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .carousel-button {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 0.5rem;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
    background: var(--white);
    color: var(--black);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.notification.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }

    .notification {
        bottom: 10px;
        right: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .notification {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

.cta-button:focus {
    transform: translateY(-5px);
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.cta-button.secondary:focus {
    background: var(--white);
    color: var(--black);
}

.carousel-button:focus {
    background: var(--white);
    color: var(--black);
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.newsletter-form button:focus {
    background: var(--white);
    color: var(--black);
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.portfolio-item:focus {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

.chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--charcoal);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
    z-index: 1003;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chatbot-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.chatbot-button svg {
    width: 28px;
    height: 28px;
}

.chatbot-button:hover {
    transform: scale(1.1);
    background: var(--white);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.chatbot-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: var(--white);
    color: var(--black);
}

.chatbot-button.active {
    background: var(--white);
    color: var(--black);
}

.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 400px;
    background: var(--charcoal);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 1002;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.chatbot-window.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-window.active ~ .chatbot-button,
.chat-input:focus ~ .chatbot-button {
    display: none;
}

body.chatbot-open {
    overflow: hidden;
}

.chatbot-header button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.chatbot-header button:hover {
    color: var(--gray);
}

.chatbot-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message {
    max-width: 80%;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.user {
    background: var(--white);
    color: var(--black);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.message.ai {
    background: var(--black);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    align-self: flex-start;
    padding: 0.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.typing-indicator:not(.hidden) {
    visibility: visible;
    opacity: 1;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--gray);
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.chat-input-form {
    display: flex;
    padding: 0.5rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

.chat-input:focus {
    border-color: var(--white);
}

.chat-send {
    background: var(--charcoal);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.chat-send svg {
    width: 18px;
    height: 18px;
}

.chat-send:hover {
    background: var(--white);
    color: var(--black);
}

.chat-send:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .chatbot-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .chatbot-button svg {
        width: 24px;
        height: 24px;
    }

    .chatbot-window {
        width: 280px;
        height: 360px;
        bottom: 80px;
        right: 15px;
    }

    .chat-input {
        font-size: 0.85rem;
    }

    .chat-send {
        width: 32px;
        height: 32px;
    }

    .chat-send svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .chatbot-button {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }

    .chatbot-button svg {
        width: 20px;
        height: 20px;
    }

    .chatbot-window {
        width: 260px;
        height: 320px;
        bottom: 70px;
        right: 10px;
    }

    .chat-input {
        font-size: 0.8rem;
    }

    .chat-send {
        width: 30px;
        height: 30px;
    }

    .chat-send svg {
        width: 14px;
        height: 14px;
    }
}

/* Blog Hero Section */
.blog-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--black);
    padding-top: 60px;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Post Styles */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.blog-post h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: left;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.blog-author, .blog-date {
    font-weight: 400;
}

.blog-post-content {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0 1rem;
}

.blog-post-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin: 1.5rem 0 0.8rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.blog-post-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--white);
    transition: width 0.3s ease;
}

.blog-post-content a:hover::after {
    width: 100%;
}

.blog-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
    }

    .blog-hero-content h1 {
        font-size: 2.2rem;
    }

    .blog-hero-content .subtitle {
        font-size: 1rem;
    }

    .blog-post {
        padding: 2rem;
    }

    .blog-post h2 {
        font-size: 2rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h3 {
        font-size: 1.6rem;
    }

    .blog-post-content h4 {
        font-size: 1.2rem;
    }

    .blog-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 1.8rem;
    }

    .blog-hero-content .subtitle {
        font-size: 0.9rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .blog-post h2 {
        font-size: 1.8rem;
    }

    .blog-post-content {
        font-size: 0.95rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.blog-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

.blog-close-button {
    background: #0e0e0e;
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.blog-close-button:hover {
    background: #f5f5f5;
    color: #000000;
    transform: scale(1.1);
}

.blog-close-button:focus {
    outline: 2px solid #f5f5f5;
    outline-offset: 2px;
    background: #f5f5f5;
    color: #000000;
}

.blog-close-button svg {
    width: 20px;
    height: 20px;
}

.section {
    padding: 7rem 2rem;
    background: #000000;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-entry {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.blog-entry:hover {
    transform: translateY(-5px);
}

.blog-content {
    flex: 1;
}

.blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.blog-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #f5f5f5;
    transition: width 0.3s ease;
}

.blog-entry:hover .blog-title::after {
    width: 50px;
}

.blog-excerpt {
    font-size: 1.1rem;
    color: #d1d1d1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #d1d1d1;
}

.blog-date {
    font-weight: 400;
    color: #d1d1d1;
}

.blog-link {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #f5f5f5;
    transition: width 0.3s ease;
}

.blog-link:hover {
    color: #f5f5f5;
    transform: translateY(-2px);
}

.blog-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .blog-list {
        gap: 2rem;
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .blog-excerpt {
        font-size: 1rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.4rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
    }
}

.chatbot-header {
    background: var(--black);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header div {
    display: flex;
    gap: 0.5rem;
}

.chatbot-expand {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.chatbot-expand:hover {
    color: var(--gray);
}

.chatbot-expand svg {
    width: 20px;
    height: 20px;
}

.chatbot-window.fullscreen {
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
    transform: scale(1);
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.fullscreen .chatbot-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chatbot-window.fullscreen .chat-input-form {
    flex-shrink: 0;
    padding: 0.5rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.chatbot-window.fullscreen .chat-input {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .chatbot-window.fullscreen {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        max-height: 100vh;
    }
    
    .chatbot-window.fullscreen .chat-input {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .chatbot-window.fullscreen {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        max-height: 100vh;
    }
    
    .chatbot-window.fullscreen .chat-input {
        font-size: 0.85rem;
    }
}

/* Replace the existing .about-image-container styles in styles.css with this */
.about-image-stack {
    position: relative;
    max-width: 500px;
    height: 350px;
    margin: 2rem auto 3rem;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card {
    position: absolute;
    width: 55%;
    height: 75%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    will-change: transform, box-shadow;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-card.card-1 {
    transform: rotate(-4deg) translateX(-25%) translateZ(10px);
    z-index: 2;
}

.image-card.card-2 {
    transform: rotate(4deg) translateX(25%) translateZ(0);
    z-index: 1;
    opacity: 0.85;
}

.about-image-stack:hover .image-card.card-1 {
    transform: rotate(-1deg) translateX(-20%) translateZ(30px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.about-image-stack:hover .image-card.card-2 {
    transform: rotate(1deg) translateX(20%) translateZ(20px);
    opacity: 1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-stack:hover .about-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-image-stack {
        max-width: 400px;
        height: 300px;
    }

    .image-card {
        width: 65%;
        height: 75%;
    }

    .image-card.card-1 {
        transform: rotate(-4deg) translateX(-15%);
    }

    .image-card.card-2 {
        transform: rotate(4deg) translateX(15%);
    }

    .about-image-stack:hover .image-card.card-1 {
        transform: rotate(-1deg) translateX(-10%) translateZ(15px);
    }

    .about-image-stack:hover .image-card.card-2 {
        transform: rotate(1deg) translateX(10%) translateZ(10px);
    }
}

@media (max-width: 480px) {
    .about-image-stack {
        max-width: 300px;
        height: 250px;
    }

    .image-card {
        width: 70%;
        height: 70%;
    }

    .image-card.card-1 {
        transform: rotate(-3deg) translateX(-10%);
    }

    .image-card.card-2 {
        transform: rotate(3deg) translateX(10%);
    }

    .about-image-stack:hover .image-card.card-1 {
        transform: rotate(-1deg) translateX(-5%) translateZ(10px);
    }

    .about-image-stack:hover .image-card.card-2 {
        transform: rotate(1deg) translateX(5%) translateZ(5px);
    }
}

.companies-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-entry {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.company-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.company-logo-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-entry:hover .company-logo {
    transform: scale(1.1);
}

.company-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.company-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.company-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--white);
    transition: width 0.3s ease;
}

.company-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.company-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .company-entry {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .company-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .company-content h3 {
        font-size: 1.2rem;
    }

    .company-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .company-entry {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .company-logo-wrapper {
        margin: 0 auto;
    }

    .company-content h3 {
        font-size: 1.1rem;
    }

    .company-content p {
        font-size: 0.9rem;
    }
}