/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', 'Segoe UI', Geneva, Verdana;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Main Content */
.main {
    min-height: calc(100vh - 300px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3c72;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Prices Section */
.prices-section {
    padding: 4rem 0;
    background-color: white;
}

.prices-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.prices-table thead {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.prices-table th,
.prices-table td {
    padding: 1.2rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.prices-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
}

.prices-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-notes {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10375c;
    margin-top: 2rem;
}

.price-notes p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
}

.price-notes ul {
    list-style-position: inside;
}

.price-notes li {
    margin-bottom: 0.7rem;
    padding-left: 0.5rem;
    line-height: 1.8;
}

/* Booking Section */
.booking-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-family: inherit;
}

.booking-form h2 {
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #10375c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Telegram Button */
.telegram-button-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.telegram-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #10375c;
    color: white !important;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .prices-table th,
    .prices-table td {
        padding: 0.9rem 0.6rem;
        font-size: 0.9rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .price-notes {
        padding: 1.5rem;
    }

    .booking-form h2 {
        font-size: 1.5rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 1rem;
    }

    .telegram-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}
