/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #1f2937;
    --gray-light: #f8fafc;
    --gray-medium: #6b7280;
    --gray-dark: #374151;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--gray-medium);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-phone i {
    color: var(--primary-color);
}

.header-phone a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111827 100%);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.mobile-nav a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.mobile-nav a:hover::before {
    width: 20px;
}

.mobile-phone {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-phone i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mobile-phone a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    padding: 0;
}

.mobile-phone a:hover {
    color: var(--primary-color);
    padding-left: 0;
}

.mobile-phone a::before {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23374151" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
}

.hero h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--gray-dark);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--gray-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ef4444);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-dark);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Equipment Section */
.equipment {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, #f1f5f9 100%);
}

.equipment-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.equipment-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.equipment-item.reverse {
    direction: rtl;
}

.equipment-item.reverse .equipment-info {
    direction: ltr;
}

.equipment-info h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.equipment-image {
    text-align: center;
}

/* Image Gallery Styles */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbnails img.thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.gallery-thumbnails img.thumb:hover,
.gallery-thumbnails img.thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnails img.thumb.active {
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background-color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--gray-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.advantage-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contacts Section */
.contacts {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111827 100%);
    color: var(--white);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contacts-info h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p,
.contact-item a {
    color: #d1d5db;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--white);
}

.contacts-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contacts-form h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.map-container {
    background-color: var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--gray-medium);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-info p {
    color: #d1d5db;
}

.footer-contacts {
    text-align: right;
}

.footer-contacts a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-contacts p {
    color: #d1d5db;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .equipment-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .equipment-item.reverse {
        direction: ltr;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contacts {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .advantage-card {
        padding: 1.5rem;
    }
    
    .contacts-form {
        padding: 1.5rem;
    }
    
    /* Gallery responsive styles */
    .gallery-thumbnails img.thumb {
        width: 60px;
        height: 45px;
    }
}

/* Additional responsive styles for gallery */
@media (max-width: 768px) {
    .image-gallery {
        gap: 0.75rem;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-thumbnails img.thumb {
        width: 70px;
        height: 52px;
    }
    
    .equipment-item {
        gap: 1.5rem;
    }
    
    .equipment-info h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnails img.thumb {
        width: 55px;
        height: 42px;
    }
    
    .gallery-thumbnails {
        gap: 0.4rem;
    }
    
    .equipment-info h3 {
        font-size: 1.5rem;
    }
    
    .feature h4 {
        font-size: 1rem;
    }
    
    .feature {
        gap: 0.75rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111827 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-cookie.accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-cookie.accept:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.btn-cookie.decline {
    background-color: transparent;
    color: #d1d5db;
    border: 2px solid #4b5563;
}

.btn-cookie.decline:hover {
    background-color: #374151;
    color: var(--white);
    border-color: #6b7280;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cookie {
        flex: 1;
        max-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* стили для уведомлений */
.form-notification {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.form-notification.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.form-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-notification.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.form-notification.processing {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.form-notification .close-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    float: right;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.form-notification .close-btn:hover {
    opacity: 1;
}

.mainheroblock{
    margin-top: 70px;
}

@media (max-width: 935px) {
    .mainheroblock{
        margin-top: 110px;
    }
}

@media (max-width: 935px) {
    .mainheroblock{
        margin-top: 110px;
    }
}

@media (max-width: 786px) {
    .mainheroblock{
        margin-top: 150px;
    }
}

@media (max-width: 786px) {
    .mainheroblock{
        margin-top: 150px;
    }
}

@media (max-width: 770px) {
    .mainheroblock{
        margin-top: 0px;
    }
}

@media (max-width: 730px) {
    .mainheroblock{
        margin-top: 50px;
    }
}

@media (max-width: 730px) {
    .mainheroblock{
        margin-top: 50px;
    }
}

@media (max-width: 530px) {
    .mainheroblock{
        margin-top: 70px;
    }
}

@media (max-width: 515px) {
    .mainheroblock{
        margin-top: 110px;
    }
}

@media (max-width: 366px) {
    .mainheroblock{
        margin-top: 150px;
    }
}

/* Prices Section */
.prices {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, #f1f5f9 100%);
}

.prices-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 800px;
}

.prices-table thead {
    background: linear-gradient(135deg, var(--primary-color), #ef4444);
    color: var(--white);
}

.prices-table th {
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.prices-table th:first-child {
    text-align: left;
    min-width: 200px;
}

.prices-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.prices-table td {
    padding: 0.875rem 0.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    color: var(--gray-dark);
}

.prices-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
}

.prices-table td:not(:first-child) {
    font-weight: 600;
    color: var(--primary-color);
}

/* Additional Services Table */
.additional-services-title {
    text-align: center;
    margin: 3rem 0 1.5rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: relative;
}

.additional-services-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.prices-table.additional-services {
    min-width: 500px;
    margin-bottom: 2rem;
}

.prices-table.additional-services th:first-child {
    min-width: 300px;
}

.prices-table.additional-services td:first-child {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
}

/* Prices Notes */
.prices-notes {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.prices-notes p {
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.prices-notes p:last-child {
    margin-bottom: 0;
}

.prices-notes a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.prices-notes a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Prices */
@media (max-width: 1024px) {
    .prices-table {
        font-size: 0.9rem;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .prices {
        padding: 4rem 0;
    }
    
    .prices-table {
        font-size: 0.85rem;
        min-width: 700px;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .prices-table th:first-child,
    .prices-table td:first-child {
        min-width: 150px;
    }
    
    .additional-services-title {
        font-size: 1.25rem;
        margin: 2rem 0 1rem 0;
    }
    
    .prices-notes {
        padding: 1rem;
    }
    
    .prices-notes p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .prices-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 0.5rem 0.3rem;
    }
    
    .prices-table th:first-child,
    .prices-table td:first-child {
        min-width: 120px;
    }
    
    .additional-services-title {
        font-size: 1.1rem;
    }
    
    .prices-notes {
        padding: 0.875rem;
    }
    
    .prices-notes p {
        font-size: 0.85rem;
    }
}