:root {
    --primary-color: #ff9150;
    --primary-hover: #ff7d2e;
    --secondary-color: #f8fafc;
    --accent-color: #ff9150;
    --light-gray: #f8fafc;
    --dark-gray: #64748b;
    --success-color: #6bb0d8;
    --text-primary: #334155;
    --border-radius: 10px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Header Styles */
h1 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Form Container */
.form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Progress Bar */
.progress-container {
    position: relative;
    margin-bottom: 5rem;
    padding-bottom: 1.5rem;
}

.progress {
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    overflow: visible;
}

.progress-bar {
    background-color: var(--primary-color);
    height: 100%;
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -10px;
    width: 100%;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-text {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

/* Plan Cards */
.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.plan-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 145, 80, 0.05);
}

.plan-card.featured {
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.plan-card.featured::before {
    content: "Önerilen";
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    transform: rotate(45deg);
}

.plan-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.featured .plan-icon {
    color: var(--accent-color);
}

.plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.plan-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-price .amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.btn-select-plan {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
}

.featured .btn-select-plan {
    background-color: var(--accent-color);
}

.btn-select-plan:hover {
    background-color: var(--primary-hover);
}

.featured .btn-select-plan:hover {
    background-color: var(--primary-hover);
}

/* Form Steps */
.form-step {
    display: none;
    margin-top: 2rem;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Controls */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 145, 80, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Success Message */
.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
    
    .plan-card {
        margin-bottom: 1.5rem;
    }
    
    .progress-container {
        margin-bottom: 4rem;
    }
}

@media (max-width: 576px) {
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .progress-container {
        margin-bottom: 3.5rem;
    }
}

/* Step1 için Pricing Table Entegrasyonu */
.step1-plans {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#step1 .pricing-plan {
    flex: 1 1 calc(33.33% - 20px);
    margin: 10px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 0;
}

#step1 .pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

#step1 .pricing-plan.selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 145, 80, 0.05);
}

#step1 .pricing-plan.recommended {
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

#step1 .recommended-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    transform: rotate(45deg);
}

#step1 .plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

#step1 .plan-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem auto;
    text-align: center;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#step1 .plan-image {
    max-width: 100%;
    max-height: 100%;
}

#step1 .price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 1rem;
}

#step1 .price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 0.2rem;
}

#step1 .price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
}

#step1 .plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

#step1 .feature-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

#step1 .feature-item i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

#step1 .plan-footer {
    margin-top: auto;
}

#step1 .btn-select {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
}

#step1 .recommended .btn-select {
    background-color: var(--accent-color);
}

#step1 .btn-select:hover {
    background-color: var(--primary-hover);
}

#step1 .recommended .btn-select:hover {
    background-color: var(--primary-hover);
}

/* Paket kategori etiketi için stil */
#step1 .category-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

/* Aylık fiyat etiketi için stil */
#step1 .price-period {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 0.2rem;
}

/* Pricing plans responsive stillerini güncelle */
@media (max-width: 1200px) {
    #step1 .pricing-plan {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (max-width: 992px) {
    #step1 .pricing-plan {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .step1-plans {
        flex-direction: column;
    }
    
    #step1 .pricing-plan {
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
    }
}

/* Paket Seçimi Sayfası - Modern Revizyon Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

#step1 {
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem;
}

#step1 h3 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.step1-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
}

/* Modern Card Styling */
#step1 .pricing-plan {
    position: relative;
    flex: none;
    width: 100%;
    margin: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: rgba(17, 12, 46, 0.05) 0px 10px 30px 0px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 230, 230, 0.8);
    overflow: hidden;
    min-height: 550px;
}

#step1 .pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: rgba(17, 12, 46, 0.12) 0px 15px 40px 5px;
}

#step1 .pricing-plan.selected {
    border: none;
    background-color: rgba(255, 145, 80, 0.03);
    box-shadow: rgba(255, 145, 80, 0.25) 0px 10px 30px -5px;
}

/* План заголовок - Стилизация */
#step1 .plan-header {
    position: relative;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#step1 .plan-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

#step1 .pricing-plan.recommended .plan-header::after {
    background: var(--accent-color);
}

#step1 .price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 0.5rem;
}

#step1 .price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0.2rem;
    align-self: flex-start;
    margin-top: 0.2rem;
    color: var(--primary-color);
}

#step1 .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

#step1 .price-period {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Category Badge */
#step1 .category-label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 145, 80, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Recommended Badge Styling */
#step1 .recommended-badge {
    position: absolute;
    top: -5px;
    right: -55px;
    background: linear-gradient(135deg, #ff9150, #ff7526);
    color: white;
    padding: 0.75rem 3.5rem;
    font-size: 0.7rem;
    transform: rotate(45deg);
    box-shadow: 0 3px 12px rgba(255, 145, 80, 0.4);
    font-weight: 600;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Plan Icon */
#step1 .plan-icon {
    width: 90px;
    height: 90px;
    margin: 0.5rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 145, 80, 0.1), rgba(255, 145, 80, 0.05));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

#step1 .plan-image {
    width: 65%;
    height: 65%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

#step1 .pricing-plan:hover .plan-icon {
    transform: scale(1.05);
}

/* Features Styling */
#step1 .plan-features {
    margin: 0;
    padding: 0.5rem 0;
    flex-grow: 1;
}

#step1 .feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#step1 .feature-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

#step1 .feature-item i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1rem;
    background: rgba(107, 176, 216, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    line-height: 0.5;
    min-width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#step1 .feature-item .feature-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

#step1 .feature-item .feature-info {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
    cursor: pointer;
}

#step1 .feature-item .feature-info i {
    color: var(--dark-gray);
    font-size: 0.75rem;
    background: transparent;
    padding: 0;
    margin: 0;
}

#step1 .feature-item .tooltip-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

#step1 .feature-item .feature-info:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

/* Plan Footer */
#step1 .plan-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#step1 .btn-select {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 145, 80, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#step1 .btn-select:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

#step1 .btn-select:hover:before {
    left: 100%;
}

#step1 .btn-select:hover {
    box-shadow: 0 7px 20px rgba(255, 145, 80, 0.4);
    transform: translateY(-2px);
}

#step1 .recommended .btn-select {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-hover));
}

/* Plan comparison info */
.plan-comparison-info {
    margin-bottom: 2rem;
    text-align: center;
}

.plan-comparison-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.plan-comparison-info p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ accordion */
.pricing-faqs {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Grid for different screen sizes */
@media (max-width: 1200px) {
    .step1-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .step1-plans {
        grid-template-columns: 1fr;
    }
    
    #step1 .pricing-plan {
        min-height: auto;
    }
}

/* Modern form styles for step 1 */
#step1 {
    padding: 2rem 0;
}

/* Plan Comparison Info */
#step1 .plan-comparison-info {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

#step1 .plan-comparison-info h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

#step1 .plan-comparison-info p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Pricing Plans Grid */
#step1 .pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

/* Pricing Plan Cards */
#step1 .pricing-plan {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

#step1 .pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

#step1 .pricing-plan.selected {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 100, 0.15);
}

/* Recommended Plan Badge */
#step1 .recommended-badge {
    position: absolute;
    top: 12px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    transform: rotate(45deg);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#step1 .recommended {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 100, 0.15);
}

/* Plan Headers */
#step1 .plan-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    position: relative;
}

#step1 .plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

#step1 .category-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

#step1 .plan-icon {
    margin-bottom: 1.2rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#step1 .plan-image {
    max-height: 100%;
    max-width: 50px;
}

/* Price Container */
#step1 .price-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.2rem;
}

#step1 .price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 0.2rem;
    margin-right: 0.2rem;
}

#step1 .price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
}

#step1 .price-period {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 0.2rem;
}

/* Feature Items */
#step1 .plan-features {
    flex-grow: 1;
    margin-bottom: 1.8rem;
}

#step1 .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

#step1 .feature-item:last-child {
    border-bottom: none;
}

#step1 .feature-item i.fa-check {
    color: var(--primary-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

#step1 .feature-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--dark-gray);
    position: relative;
    line-height: 1.4;
}

/* Feature Info Tooltips */
#step1 .feature-info {
    display: inline-block;
    margin-left: 5px;
    position: relative;
    cursor: pointer;
}

#step1 .feature-info i.fa-info-circle {
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0.7;
}

#step1 .feature-info:hover i.fa-info-circle {
    opacity: 1;
}

#step1 .feature-info .tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    width: 200px;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

#step1 .feature-info .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

#step1 .feature-info:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Plan Footer and Button */
#step1 .plan-footer {
    text-align: center;
}

#step1 .btn-select {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    width: 100%;
    letter-spacing: 1px;
}

#step1 .btn-select:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
#step1 .pricing-faqs {
    max-width: 800px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

#step1 .pricing-faqs h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#step1 .faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

#step1 .faq-question {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s;
    color: var(--dark-gray);
}

#step1 .faq-question:hover {
    background: rgba(0, 0, 0, 0.04);
}

#step1 .faq-question i {
    transition: transform 0.3s;
}

#step1 .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

#step1 .faq-answer {
    display: none;
    padding: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background: white;
}

#step1 .faq-item.active .faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    #step1 .pricing-plans {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    #step1 .pricing-plans {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    #step1 .pricing-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #step1 .pricing-plan {
        max-width: 100%;
    }
    
    #step1 .plan-comparison-info,
    #step1 .pricing-faqs {
        padding: 1.2rem;
    }
    
    #step1 .plan-comparison-info h4,
    #step1 .pricing-faqs h4 {
        font-size: 1.4rem;
    }
} 