* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 0.1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 2rem;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 1.1rem;
}

.nav ul li a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://i.ibb.co/qMB5TqQg/hunter-ramps.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    animation: fadeIn 1.5s ease-out;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #3182ce;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInUp 1s ease-out 0.6s both;
}

/* Зеленые кнопки */
.btn-green {
    background: #38a169;
}

.btn-green:hover {
    background: #2f855a;
}

/* Голубые кнопки */
.btn-blue {
    background: #2b6cb0;
}

.btn-blue:hover {
    background: #2c5282;
}

/* Цветовые акценты для карточек */
.price-card.popular {
    border-top: 4px solid #38a169;
    transform: scale(1.03);
}

.price-card.popular h3 {
    color: #38a169;
}

.price-card.premium {
    border-top: 4px solid #2b6cb0;
}

.price-card.premium h3 {
    color: #2b6cb0;
}

.price-card.popular .price {
    color: #38a169;
}

.price-card.premium .price {
    color: #2b6cb0;
}

.station-card.primary {
    border-top: 4px solid #38a169;
}

.station-card.secondary {
    border-top: 4px solid #2b6cb0;
}

.station-card.primary h3 {
    color: #38a169;
}

.station-card.secondary h3 {
    color: #2b6cb0;
}

.station-card.primary .station-phone {
    color: #38a169;
}

.station-card.secondary .station-phone {
    color: #2b6cb0;
}

.review-card.featured {
    border-left: 4px solid #38a169;
}

.review-card.recent {
    border-left: 4px solid #2b6cb0;
}

.review-card.featured .review-header h4 {
    color: #38a169;
}

.review-card.recent .review-header h4 {
    color: #2b6cb0;
}

.review-card.featured .rating {
    color: #38a169;
}

.review-card.recent .rating {
    color: #2b6cb0;
}

.btn:hover {
    background: #2c5282;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #116062;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
}

.result-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.result-card p {
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    color: #3182ce;
}

/* Prices Section */
.prices {
    background: #f0f2f5;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #3182ce;
}

.price-card:hover {
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #3182ce;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.price-card ul li:last-child {
    border-bottom: none;
}

/* Stations Section */
.stations {
    background: linear-gradient(135deg, #f0f2f5, #e2e8f0);
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.station-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #3182ce;
}

.station-card:hover {
    transform: translateY(-5px);
}

.station-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.station-address {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #495057;
}

.station-phone {
    color: #3182ce;
    margin-bottom: 0.5rem;
}

.station-hours {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.station-services {
    font-style: italic;
    color: #6c757d;
    border-top: 1px dashed #dee2e6;
    padding-top: 1rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h4 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.rating {
    color: #3182ce;
}

.review-card p {
    margin-bottom: 1rem;
    font-style: italic;
}

.date {
    font-size: 0.9rem;
    color: #777;
}

/* Contacts Section */
.contacts-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form .btn {
    background: #3182ce;
    color: white;
    border: none;
}

.contact-form .btn:hover {
    background: #2c5282;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav ul {
        margin-top: 1rem;
    }
    
    .nav ul li {
        margin: 0 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
}