/* Deniz Hukuku Sayfası Özel Stilleri */
.practice-area-hero {
    background-image: url('../uploads/deniz-hukuku-bg.jpg');
    background-size: cover;
    background-position: center;
}

.service-card {
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 30px;
}

.service-icon i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
}

.cta-section {
    margin-top: 50px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #ff0000;
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-box p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 25px;
    border-left: 3px solid #ff0000;
    padding-left: 15px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}
