/* Comparison Section Styles */
.comparison-section {
    background-color: #121212;
    color: white;
    padding: 40px 0;
}

.comparison-section h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 64px;
}

@media (max-width: 768px) { /* Mobil cihazlar için */
    .comparison-section h2 {
        font-size: 2.8rem; /* Mobilde bir tık daha küçük font boyutu */
    }
}


.text-pink {
    font-style: italic;
    color: #d78a8a;
}

.text-green {
    font-style: italic;
    color: #85e082;
}

.comparison-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    border: 0.125rem solid rgba(255, 255, 255, 0.1);
}

.comparison-card .card-header {
    margin-bottom: 1.5rem;
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.icon-x, .icon-check {
    width: 2rem;
    height: 2rem;
}

.fill-red-300 {
    fill: #fca5a5;
}

.stroke-red-300 {
    stroke: #fca5a5;
}

.stroke-red-900 {
    stroke: #7f1d1d;
}

.fill-green-300 {
    fill: #86efac;
}

.stroke-green-300 {
    stroke: #86efac;
}

.stroke-green-900 {
    stroke: #14532d;
}

.comparison-card ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
}

.employee-card {
    background-color: rgba(69, 10, 10, 0.1);
    border-color: rgb(252, 165, 165);
    border-width: 0.125rem;
    color: rgb(252, 165, 165);
}

.entrepreneur-card {
    background-color: rgba(5, 46, 22, 0.1);
    border-color: rgb(134, 239, 172);
    border-width: 0.125rem;
    color: rgb(134, 239, 172);
} 


.button-container {
    text-align: center;
}

.download-button {
    display: inline-block;
    background: linear-gradient(90deg, #fff700, #f6c700); /* Sarı degrade */
    color: #000; /* Siyah yazı */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 10px; /* Köşeleri yuvarlat */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Hafif gölge */
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
    transform: scale(1.05); /* Hover ile büyütme efekti */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4); /* Daha güçlü gölge */
}