/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0 30px;
}

h1 {
    font-size: 2rem;
    color: #1b246f;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    color: #1b246f;
    margin-bottom: 15px;
}

/* Sections */
section {
    margin-bottom: 40px;
    text-align: center;
}

/* Contact section */
.contact .phone {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact .phone a {
    color: #1b246f;
    text-decoration: none;
    font-weight: bold;
    min-height: 44px;
    display: inline-block;
    line-height: 44px;
}

.contact .phone a:hover {
    text-decoration: underline;
}

.contact .address {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Button */
.btn-book {
    display: inline-block;
    background-color: #1b246f;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    min-height: 44px;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #141b54;
}

/* Social section */
.social a {
    color: #1b246f;
    text-decoration: none;
    font-size: 1.1rem;
    min-height: 44px;
    display: inline-block;
    line-height: 44px;
}

.social a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    header {
        padding: 60px 0 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .contact .phone {
        font-size: 1.75rem;
    }

    .btn-book {
        font-size: 1.3rem;
        padding: 18px 50px;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    section {
        margin-bottom: 50px;
    }
}
