* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.brand-logos img {
    max-width: 250px;
    height: auto;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 1rem;
    background: #2c3e50;
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.cta-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.link-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.link-button {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.link-button:hover {
    background: #c0392b;
}

.registration-steps, .advantages {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

ol, ul {
    margin-left: 2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #2c3e50;
    color: white;
    margin-top: 2rem;
}

/* Reviews Section Styles */
.reviews {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.aggregate-rating {
    font-size: 1.5rem;
    color: #e67e22;
    text-align: center;
    margin: 1rem 0;
}

.review-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
}

.review-card p {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .review-cards {
        grid-template-columns: 1fr;
    }
}

/* Image Slider Styles */
.hero-slider {
    position: relative;
    max-width: 1200px;
    margin: 1rem auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
}

.slider-nav:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .slide img {
        height: 300px;
    }
    
    .slider-nav {
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .cta-section h1 {
        font-size: 1.8rem;
    }
    
    .link-container {
        grid-template-columns: 1fr;
    }
}