.pricelist-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.pricelist-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

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

.service-image-placeholder {
    height: 200px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: #737373;
    border-bottom: 1px solid #636363;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.header-nav a {
    text-decoration: none;
    color: #e8e8e8;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 400;
}

.header-nav a:hover,
.header-nav a.active {
    color: #ffffff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 16px;
    color: #888;
    font-weight: 300;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.logo {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.tagline {
    font-size: 16px;
    color: #888;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.text-link {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.7;
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 60px 0;
}

/* Updates Section */
.updates-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}

.update-item {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.update-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2c2c2c;
}

.update-item p {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 40px 30px;
    background: #fafafa;
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2c2c2c;
}

.service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Price List Section */
.pricelist-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricelist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pricelist-header h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #2c2c2c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.dropdown-toggle:hover {
    background: #1a1a1a;
}

.dropdown-toggle .arrow {
    transition: transform 0.3s;
}

.dropdown-toggle.active .arrow {
    transform: rotate(180deg);
}

.pricelist-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pricelist-content.active {
    max-height: 1000px;
}

.pricelist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 30px;
    background: #fafafa;
    margin-top: 20px;
}

.pricelist-category h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #2c2c2c;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 10px;
}

.pricelist-category ul {
    list-style: none;
}

.pricelist-category li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.pricelist-category li:last-child {
    border-bottom: none;
}

.pricelist-category li span:first-child {
    color: #666;
}

.pricelist-category .price {
    color: #2c2c2c;
    font-weight: 500;
}

/* Services Image Grid */
.services-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-image-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image-placeholder {
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-image-placeholder span {
    font-size: 16px;
    color: #999;
    letter-spacing: 1px;
}

.service-image-card:hover .service-image-placeholder {
    background: #e8e8e8;
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card-list {
    list-style: none;
    margin: 20px 0;
}

.service-card-list li {
    padding: 8px 0;
    padding-left: 15px;
    color: #888;
    font-size: 13px;
    position: relative;
}

.service-card-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.service-card-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s;
}

.service-card-btn:hover {
    background: #1a1a1a;
}

/* Contact Page */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    text-align: center;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.contact-form-section {
    margin-top: 60px;
}

/* Forms */
.contact-form,
.booking-form {
    max-width: 700px;
    margin: 40px auto 0;
}

.form-section {
    margin-bottom: 50px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-notice {
    background: #f9f9f9;
    padding: 20px;
    margin: 30px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #2c2c2c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1a1a1a;
}

/* Booking Form Container */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.gallery-item {
    text-align: center;
}

.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.gallery-placeholder span {
    font-size: 14px;
    color: #999;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-placeholder {
    background: #e8e8e8;
}

.gallery-caption {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    margin: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fafafa;
    padding: 40px 30px;
    text-align: center;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 60px 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
}

/* Event Registration Page */
.event-details {
    max-width: 900px;
    margin: 0 auto 60px;
}

.event-info-card {
    background: #f9f9f9;
    padding: 40px;
    margin-bottom: 40px;
}

.event-info-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-info-item strong {
    font-size: 13px;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.event-info-item span {
    font-size: 15px;
    color: #666;
}

.event-description {
    padding: 0 20px;
}

.event-description h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.event-description p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-features {
    list-style: none;
    margin: 25px 0;
}

.event-features li {
    padding: 10px 0;
    padding-left: 25px;
    color: #666;
    font-size: 14px;
    position: relative;
}

.event-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.event-note {
    background: #fff9e6;
    padding: 15px;
    border-left: 3px solid #ffc107;
    margin-top: 20px;
}

.event-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.event-form {
    margin-top: 40px;
}

/* Responsive Updates Grid */
@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 60px 30px;
    }

    .header {
        padding: 15px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .header-nav {
        gap: 20px;
    }

    .logo {
        font-size: 42px;
        letter-spacing: 8px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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

    .service-detail-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail-number {
        font-size: 36px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

a {
    text-decoration: none;
}