* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    padding: 60px 20px;
}

.back-button {
    position: fixed;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(227,98,58,0.1);
    color: #E3623A;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(227,98,58,0.3);
    transform: translateX(-5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    margin-bottom: 120px;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(227,98,58,0) 0%, rgba(227,98,58,1) 50%, rgba(227,98,58,0) 100%);
}

.logo {
    width: 150px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.title {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.title span {
    display: block;
    font-size: 1.2rem;
    color: #E3623A;
    letter-spacing: 4px;
    margin-top: 20px;
}

.date {
    font-size: 1rem;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px 0;
}

.locations {
    margin: 100px 0;
}

.locations-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.locations-table tr {
    transition: transform 0.3s ease;
}

.locations-table tr:hover {
    transform: translateX(10px);
}

.locations-table td, .locations-table th {
    padding: 25px;
}

.locations-table th {
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.locations-table td {
    background: rgba(255,255,255,0.03);
}

.locations-table td:first-child {
    border-radius: 8px 0 0 8px;
    font-weight: bold;
    color: #E3623A;
}

.locations-table td:last-child {
    border-radius: 0 8px 8px 0;
}

.services {
    margin: 100px 0;
    padding: 60px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(227,98,58,0) 0%, rgba(227,98,58,0.3) 50%, rgba(227,98,58,0) 100%);
}

.services h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    padding: 20px 0;
    position: relative;
    padding-left: 20px;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: #E3623A;
}

.pricing {
    margin: 100px 0;
    padding: 60px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    text-align: center;
}

.pricing p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.price-range {
    font-size: 3.5rem;
    color: #E3623A;
    margin: 30px 0;
    letter-spacing: -1px;
}

.payment {
    margin-top: 100px;
    padding: 60px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
}

.payment h3 {
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: normal;
}

.payment ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.payment li {
    font-size: 1.2rem;
    position: relative;
    padding-left: 20px;
}

.payment li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: #E3623A;
}

@media (max-width: 768px) {
    .back-button {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 40px;
        display: inline-block;
    }

    body {
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        margin-top: 20px;
    }

    .header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .date {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 0;
    }

    .title {
        font-size: 2.5rem;
    }

    .locations-table, .locations-table tbody, .locations-table tr, .locations-table td {
        display: block;
    }

    .locations-table th {
        display: none;
    }

    .locations-table tr {
        margin-bottom: 20px;
    }

    .locations-table td {
        padding: 15px;
        border-radius: 0 !important;
    }

    .payment ul {
        flex-direction: column;
        gap: 20px;
    }

    .services, .pricing, .payment {
        padding: 30px;
    }

    .price-range {
        font-size: 2.5rem;
    }
}