/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .logo {
        width: auto;
        text-align: left;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: 1.5rem;
        top: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero-section {
        padding: 4rem 1.5rem;
    }

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

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

    .page-content {
        padding: 2rem 1.5rem;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 0 1.5rem;
    }

    .logo a {
        font-size: 1rem;
    }

    /* Homepage responsive */
    .practices-grid {
        grid-template-columns: 1fr;
    }

    .practice-block {
        min-height: 400px;
        padding: 3rem 2rem;
    }

    .homepage-title {
        padding: 3rem 1.5rem 1.5rem;
    }

    .homepage-title h1 {
        font-size: 2rem;
    }

    /* Two column responsive */
    .two-column {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .two-column .column {
        padding: 3rem 2rem;
    }

    .two-column .column.image-column {
        min-height: 300px;
    }

    .two-column .column.image-column-contact {
        display: none !important;
    }

    .image-section-kobido {
        display: none !important;
    }

    /* Circular image responsive */
    .circular-image {
        width: 250px;
        height: 250px;
    }

    /* Pricing section responsive */
    .pricing-section {
        padding: 3rem 1.5rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem;
    }

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

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .page-content {
        padding: 2rem 1rem;
    }

    .page-content h1 {
        font-size: 1.75rem;
    }

    .content-section {
        padding: 0 1rem;
    }

    nav {
        padding: 1rem;
    }

    .practice-block {
        min-height: 350px;
        padding: 2rem 1.5rem;
    }

    .practice-block h2 {
        font-size: 1.5rem;
    }

    .circular-image {
        width: 200px;
        height: 200px;
    }

    .homepage-title h1 {
        font-size: 1.75rem;
    }

    .pricing-section h2 {
        font-size: 1.75rem;
    }
}

