.cta-button {
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    padding: 0;
}

.cta-button:hover {
    color: #000;
}

/* Ensure the arrow inside behaves nicely */
.cta-button .arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Navbar Adjustment */
    .nav-container {
        padding: 0 20px;
    }

    .logo {
        /* Keep logo visible on left */
        z-index: 1001;
    }

    .hamburger {
        display: block;
        z-index: 1001;
        /* Ensure hamburger is above overlay */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* transform: translateX(100%);  <-- Handled by .active toggle in JS usually or CSS */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.5rem;
        /* Larger links for mobile */
    }

    /* Hero Section */
    .hero-title {
        font-size: 3rem;
        /* Scale down from 5rem */
    }

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

    .container {
        padding: 0 20px;
    }

    /* Work Grid */
    .work-grid {
        grid-template-columns: 1fr;
        /* Stack works */
    }

    /* About Grid */
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        justify-content: center;
        order: -1;
        /* Image on top? Or keep bottom? Keeping logic simple first */
    }

    .profile-image {
        max-width: 100%;
        height: auto;
    }

    /* Testimonial width */
    .testimonial-card {
        width: 300px;
        /* Smaller cards for mobile */
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Project Detail Specifics Moved to workdetail-style.css */

    .service-content {
        flex-direction: column;
    }

    .service-text-col,
    .service-tags-col {
        max-width: 100%;
    }

    /* About Actions - Mobile Reset */
    .about-actions {
        gap: 1rem;
    }

    .about-actions .cta-button:first-child {
        padding-right: 0;
        border-right: none;
        margin-right: 0;
    }
}