@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #8B0000;
    --secondary-color: #5C0000;
    --accent-color: #FFD700;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --light-bg: #F5F5F5;
    --dark-bg: #221C1C;
    --footer-bg: #1A0000;
    --border-color: #3D0000;
    --card-bg: #F8F8F8;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: white;
    font-size: 28px;
    margin: 0;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: white;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    left: 0;
    bottom: -5px;
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: var(--transition);
}

.banner {
    height: 100vh;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-bg) 30%, transparent 70%);
    z-index: 1;
}

.about {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 26px;
}

.about-text p {
    margin-bottom: 20px;
}

.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.service-image {
    width: 40%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    width: 60%;
    padding: 30px;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content ul {
    margin-top: 15px;
}

.service-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.benefits {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: white;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    color: white;
    font-size: 36px;
}

.benefits-text .divider {
    margin-left: 0;
}

.benefits-text ul {
    margin: 30px 0;
}

.benefits-text li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.benefits-text li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.benefits-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.schedule-tabs {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tabs-header {
    display: flex;
    background-color: var(--primary-color);
}

.tab-btn {
    padding: 15px 30px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--secondary-color);
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.schedule-day {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
}

.schedule-day h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.schedule-item {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.time {
    font-weight: 600;
    color: var(--secondary-color);
}

.schedule-info {
    margin-bottom: 20px;
    font-size: 18px;
}

.schedule-note {
    margin-top: 20px;
    font-style: italic;
}

.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.testimonial-date {
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

.contact {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-label {
    font-weight: 600;
    width: 100px;
    color: var(--primary-color);
}

.map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-container {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin: 0;
}

footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-nav h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .banner-content h2 {
        font-size: 40px;
    }
    
    .about-content,
    .benefits-content,
    .contact-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .banner-content h2 {
        font-size: 32px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    .banner-image {
        width: 100%;
    }
    
    .banner::after {
        background: linear-gradient(0deg, var(--dark-bg) 30%, transparent 70%);
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-image,
    .service-content {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.policy-page {
    padding: 150px 0 100px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-header {
    margin-bottom: 40px;
    text-align: center;
}

.policy-header h1 {
    color: var(--primary-color);
    font-size: 36px;
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 15px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 600;
}

.back-home:hover {
    text-decoration: underline;
}

.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--light-bg);
}

.thankyou-container {
    text-align: center;
    max-width: 600px;
    padding: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thankyou-icon {
    font-size: 60px;
    color: green;
    margin-bottom: 20px;
}

.thankyou-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 18px;
    margin-bottom: 30px;
}

.countdown {
    margin: 30px 0;
    font-size: 20px;
    font-weight: 600;
}