/* Practice Page Specific Styles */
.practice-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.practice-intro h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.practice-intro p {
    font-size: 1.125rem;
    color: hsl(var(--foreground));
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.practice-item {
    margin-bottom: 4rem;
    background: hsla(var(--background), 0.9);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0px 5px 13px rgba(0, 0, 0, 0.13);
}

.practice-item h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.practice-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.21);
}

.practice-services-list {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.practice-services-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.practice-services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
}

.practice-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(var(--foreground));
}

.practice-cta {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(
        to right,
        hsla(var(--background), 0.9),
        hsla(var(--background), 0.95)
    );
    border-radius: var(--radius);
    margin-top: 2rem;
}

.practice-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.practice-cta p {
    font-size: 1.125rem;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Tips Button Styles */
.tips-teaser {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.tips-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(var(--primary));
    color: hsl(var(--accent));
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tips-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tips-button svg {
    transition: transform 0.2s ease;
}

.tips-button:hover svg {
    transform: translateX(3px);
}

/* Tips Modal Styles */
.tips-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.89);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    padding: 2rem;
}

.tips-card {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    max-height: 700px;
    background: hsl(var(--background));
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.08);
    transform: translateY(-50px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tips-close-button {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: hsl(var(--foreground));
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.tips-close-button:hover {
    color: hsl(var(--primary));
}

.tips-content {
    padding: 2.5rem;
    overflow-y: auto;
}

.tips-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.tips-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    opacity: 0.8;
    margin-bottom: 2rem;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-bullet {
    color: hsl(var(--primary));
    font-size: 1.5rem;
    line-height: 1;
}

.tip-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(var(--foreground));
    margin: 0;
    padding-top: 0.2rem;
}

/* Custom scrollbar styles will be inherited from your global.css */
.tips-content::-webkit-scrollbar {
    width: 8px;
}

.tips-content::-webkit-scrollbar-track {
    background: hsl(var(--background));
}

.tips-content::-webkit-scrollbar-thumb {
    background: hsl(var(--border));
    border-radius: 4px;
}

@media (max-width: 768px) {
    .tips-content {
        padding: 2rem 1.5rem;
    }
    
    .tips-content h2 {
        font-size: 2rem;
    }
    .practice-content {
        padding: 2rem 1rem;
    }

    .practice-intro h2 {
        font-size: 2rem;
    }

    .practice-intro p {
        font-size: 1rem;
    }

    .practice-item {
        padding: 1.5rem;
    }

    .practice-item h3 {
        font-size: 1.5rem;
    }

    .practice-image {
        margin: 1rem 0;
    }

    .practice-item p {
        font-size: 1rem;
    }

    .practice-services-list li {
        font-size: 1rem;
    }

    .practice-cta {
        padding: 2rem 1rem;
    }

    .practice-cta h3 {
        font-size: 1.5rem;
    }

    .practice-cta p {
        font-size: 1rem;
    }
}