
.section-title {
    font-size:40px !important;
}
.section-subtitle {
    font-size:17px !important;
}
.tech-category-block {
    margin-bottom: 80px; /* Kategoriler arasına daha fazla boşluk */
}
.tech-category-block:last-child {
    margin-bottom: 20px;
}
.category-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #2c3e50; /* Ana stilinizdeki bir renk tonu */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
}
.tech-item {
    background-color: #ffffff; /* Arka planı beyaz yapalım */
    border-radius: 12px;
    padding: 20px;
    /* Yükseklik ve flex ayarlarıyla içeriği dikeyde ortalıyoruz */
    height: 140px;
    display: flex;
    flex-direction: column; /* İçerik alt alta gelecek */
    align-items: center;
    justify-content: center;
    gap: 15px; /* Logo ve yazı arası boşluk */
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid #e9ecef; /* Daha belirgin bir border */
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.1);
    border-color: #d1d8e0;
}

.tech-item img {
    max-height: 45px; /* Logolar biraz daha büyük olabilir */
    margin: 0; /* Alttaki boşluğu sıfırla, gap ile yönetilecek */
}

.tech-item .tech-name {
    font-size: 15px;
    font-weight: 500;
    color: #34495e;
}

/* Grid yapısını bu sayfada biraz daha havadar yapalım */
.tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px; /* Kartlar arası boşluk biraz daha fazla */
}
.mail {
    background-color:#fafafa;
}

.mail-cta {
    background-color: var(--lume-bg-light);
    width: 100%;
    max-width: 42rem;
    margin: 80px auto;
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.6rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon-background {
    width: 4rem;
    height: 4rem;
    background-color: #F3F4F6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg {
    width: 2rem;
    height: 2rem;
    color: #4B5563;
}

.cta-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2.5rem;
    letter-spacing: -0.025em;
}

.email-link {
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #1F2937;
    letter-spacing: -0.025em;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.email-link:hover {
    color: #000;
}

.underline-effect {
    display: block;
    max-width: 0;
    transition: max-width 0.5s ease-in-out;
    height: 2px;
    background-color: #1F2937;
    margin-top: 0.25rem;
}

.email-link:hover .underline-effect {
    max-width: 100%;
}
