:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.ind-reg-section {
    padding: 80px 0;
}

.ind-reg-section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.ind-reg-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
}

.ind-reg-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ind-reg-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.ind-reg-hero-content {
    position: relative;
    z-index: 1;
}

.ind-reg-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.ind-reg-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.ind-reg-btn-primary {
    background-color: var(--secondary-color) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s !important;
}

.ind-reg-btn-primary:hover {
    background-color: #c0392b !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.ind-reg-btn-secondary {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s !important;
    margin-left: 15px !important;
}

.ind-reg-btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ind-reg-feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.ind-reg-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ind-reg-feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.ind-reg-feature-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ind-reg-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.ind-reg-comparison-table th {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 15px !important;
    text-align: center !important;
}

.ind-reg-comparison-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.ind-reg-comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.ind-reg-process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.ind-reg-process-step:before {
    content: '';
    position: absolute;
    top: 40px;
    left: -76px;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    z-index: 1;
}

.ind-reg-process-step:first-child:before {
    display: none;
}

.ind-reg-process-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.ind-reg-pricing-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid var(--success-color);
}

.ind-reg-pricing-card.popular {
    transform: scale(1.05);
    border-top: 4px solid var(--secondary-color);
}

.ind-reg-pricing-card.popular .ind-reg-pricing-header {
    background-color: var(--secondary-color);
    color: white;
}

.ind-reg-pricing-header {
    background-color: var(--success-color);
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.ind-reg-pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    text-align: center;
}

.ind-reg-pricing-features {
    list-style: none;
    padding: 0;
}

.ind-reg-pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.ind-reg-pricing-features li:last-child {
    border-bottom: none;
}

.ind-reg-faq-card {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.ind-reg-faq-header {
    background-color: var(--light-color);
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.ind-reg-faq-header:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: all 0.3s;
}

.ind-reg-faq-header.collapsed:after {
    transform: rotate(-90deg);
}

.ind-reg-faq-body {
    padding: 20px;
    background: white;
}

.ind-reg-contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ind-reg-form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding-left: 15px;
    margin-bottom: 20px;
}

.ind-reg-form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.ind-reg-quiz-option {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.ind-reg-quiz-option:hover {
    border-color: var(--accent-color);
}

.ind-reg-quiz-option.selected {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: var(--accent-color);
}

.ind-reg-checklist-item {
    padding: 10px 15px;
    border-left: 3px solid #ddd;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.ind-reg-checklist-item:hover {
    border-left-color: var(--accent-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.ind-reg-checklist-item.completed {
    border-left-color: var(--success-color);
    background-color: rgba(39, 174, 96, 0.05);
}

.ind-reg-timeline {
    position: relative;
    padding-left: 50px;
}

.ind-reg-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.ind-reg-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.ind-reg-timeline-dot {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.ind-reg-timeline-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .ind-reg-process-step:before {
        left: -45px;
    }
}

@media (max-width: 768px) {
    .ind-reg-hero-title {
        font-size: 2rem;
    }

    .ind-reg-hero-subtitle {
        font-size: 1.2rem;
    }

    .ind-reg-section {
        padding: 50px 0;
    }

    .ind-reg-btn-secondary {
        margin-left: 0;
        /*margin-top: 15px;*/
    }

    .ind-reg-process-step:before {
        display: none;
    }

    .ind-reg-pricing-card.popular {
        transform: scale(1);
    }
}