.title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.title-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Mevcut h2 stilini güncelleyelim */
.content-box h2 {
    font-size: 20px;
    color: #1f2937;
    margin: 0; /* margin-bottom'u kaldırdık çünkü artık title-with-icon'da var */
    font-weight: 600;
}
        .containerx {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 30px;
            position: relative;
        }

        .section {
            margin-bottom: 40px;
        }

        /* Marka Adı Bölümü */
        .brand-name-section {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 30px;
        }

        .icon-box {
            background: #f3f4f6;
            padding: 15px;
            border-radius: 8px;
            display: inline-flex;
        }

        .icon-box svg {
            width: 24px;
            height: 24px;
            color: #4f46e5;
        }

        .content-box {
            flex: 1;
        }

        .content-box h2 {
            font-size: 20px;
            color: #1f2937;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .content-box p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.5;
        }

        .form-input {
            width: 100%;
            
            padding: 12px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            
            font-size: 15px;
        }

        .form-input:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        /* Marka Sınıfı Grid */
.classes-containerx {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolon */
    gap: 15px;
    max-width: 100%;
}
@media (max-width: 1200px) {
    .classes-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet görünümü için 2 kolon */
    }
}

@media (max-width: 768px) {
    .classes-grid {
        grid-template-columns: 1fr; /* Mobil görünüm için tek kolon */
    }
}
.class-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.class-item:hover {
    border-color: #4f46e5;
    background: #f8fafc;
}

.class-item input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #4f46e5;
}

.class-item label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

        .info-icon {
            margin-left: auto;
            color: #9ca3af;
            cursor: help;
            font-size: 16px;
        }

        /* Fiyat Kartı */
        .price-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 25px;
            position: sticky;
            top: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .price-row {
            margin-bottom: 20px;
        }

        .price-row h3 {
            font-size: 16px;
            color: #374151;
            margin-bottom: 5px;
        }

        .price-description {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .price-amount {
            font-size: 24px;
            font-weight: 600;
            color: #1f2937;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: #1895ad;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .submit-btn:hover {
            background: #118297;
        }

        .kdv-note {
            text-align: center;
            font-size: 12px;
            color: #6b7280;
            margin-top: 15px;
        }

        /* Alert */
        .alert {
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .alert-success {
            background-color: #ecfdf5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        @media (max-width: 1024px) {
            .classes-containerx {
                grid-template-columns: 1fr;
            }

            .price-card {
                position: static;
                margin-bottom: 30px;
                
            }
        }

        @media (max-width: 768px) {
            .containerx {
                padding: 20px;
            }

            .brand-name-section {
                flex-direction: column;
            }

            .icon-box {
                margin-bottom: 15px;
            }
        }

/* Divider ve Link Stilleri */
.divider {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-radius: 6px;
}

.help-link:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

.help-link i {
    font-size: 16px;
    width: 20px;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #fff;
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}

/* FAQ Stilleri */
.faq-list, .faq-list-open {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-list-open .faq-answer {
    max-height: none;
    padding: 15px;
}

