

.intro-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.history-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.history-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.values-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.points-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.points-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.points-table {
    max-width: 800px;
    margin: 0 auto 4rem;
    overflow-x: auto;
}

.points-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.points-table thead {
    background-color: var(--primary-color);
    color: white;
}

.points-table th,
.points-table td {
    padding: 1.2rem;
    text-align: left;
}

.points-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

.points-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.points-table tbody tr:last-child {
    border-bottom: none;
}

.points-table tbody tr:hover {
    background-color: var(--bg-light);
}

.points-table td {
    color: var(--text-dark);
}

.registration-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.registration-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.registration-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
}

.registration-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.registration-form input {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.registration-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.registration-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}


@media (max-width: 768px) {
    .intro-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h1 {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .points-table {
        font-size: 0.9rem;
    }

    .points-table th,
    .points-table td {
        padding: 0.8rem;
    }

    .registration-section {
        padding: 2rem;
    }
}
