

.marka-section {
    padding: 5rem 0;
    
    background-color: #ffffff; 
    font-family: 'Inter', sans-serif;
   
    margin-top: -1px; 
}


.marka-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0.5rem; 
    margin-bottom: 4rem;
    text-align: center;
}

.marka-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}


.marka-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e6f7eb;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(75, 151, 95, 0.08);
    border-top: 4px solid #4b975f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; 

    min-height: 420px; 
    width: 100%;
    height: 100%;
}

.marka-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(75, 151, 95, 0.15);
}


.marka-logo-wrapper {
    height: 120px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.marka-logo-wrapper img {
    max-height: 85px; 
    max-width: 200px; 
    width: auto;
    height: auto;
}


.marka-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}
.marka-card p {
    font-size: 1rem; 
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1; 
}


.marka-cta {
    font-size: 1rem;
    font-weight: 600;
    color: #4b975f;
    text-decoration: none;
    transition: color 0.3s ease;
}
.marka-cta:hover {
    color: #007a36; 
}
.marka-cta i {
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
}
.marka-cta:hover i {
    transform: translateX(5px);
}


.marka-lansman-etiketi {
    font-size: 1rem;
    font-weight: 600;
    color: #555; 
    background-color: #f4f4f4; 
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    display: inline-block;
    margin-top: 0.5rem; 
    margin-bottom: 0.5rem; 
}
.marka-lansman-etiketi i {
    margin-right: 0.5rem;
    color: #009441;
}



@media (max-width: 768px) {
    .marka-section {
        padding: 4rem 1rem;
    }
    
    .marka-card {
        min-height: auto;
        padding: 2rem;
    }
}