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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}


/* Header */
.header {
    background: linear-gradient(to right, #9fb7b2, #b9d5d0);
    align: center;
    color: #fff;
    text-align: center;
    
/*     max-width: 80%; */
}

.header h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.header p {
    font-size: 18px;
}

/* Navbar */
.navbar {
    display: flex;
    background-color: #333;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    transition: background 0.3s, color 0.3s;
    text-align: center;
    flex: 1;
}

.navbar a:hover {
    background-color: #1abc9c;
    color: #fff;
}

.navbar a.active {
    background-color: #666;
    color: #fff;
}

/* Main Content */
.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/*     max-width: 600px;
    width: 100%; */
        max-width: 80%;
/*     width: 100%; */
    text-align: left;
    margin-bottom: 20px;
}

.contact-info h2 {
    color: #1abc9c;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
}

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

.side {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main {
    flex: 1 1 65%;
    padding: 20px;
    margin: 10px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/*     max-width: 600px;
    width: 100%; */
        max-width: 80%;
/*     width: 100%; */
    text-align: left;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Pricing */
    .pricing{
      margin-top:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .pricing-table{
      width:100%;
      border-collapse:collapse;
      background:transparent;
      border-radius:10px;
      overflow:hidden;
      box-shadow:0 6px 18px rgba(16,24,40,0.03);
    }

    .pricing-table th, .pricing-table td{
      padding:12px 14px;
      text-align:left;
      border-bottom:1px solid #F3F4F6;
      background:var(--card);
      font-size:15px;
    }

    .pricing-table thead th{
      background:linear-gradient(90deg, #FBFBFF, #FFF);
      color:var(--muted);
      font-weight:600;
      border-bottom:2px solid #EEF2FF;
    }

    .price{
      font-weight:700;
      color:var(--text);
    }


.footer a {
    color: #1abc9c;
    text-decoration: none;
}

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

/* Responsive Design */
/* @media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
} */
@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }
}
/* Book appointment button */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    margin: 0;
}

.button-cls {
    background-color: #007bff; /* blue color */
    color: white;
    font-size: 2rem; /* Bigger font size for prominence */
    padding: 10px 20px; /* Increased padding for a larger button */
    border: none;
    border-radius: 12px;
    margin-right: 10px;
    cursor: pointer;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-cls:hover {
    background-color: #0056b3; /* darker blue */
    transform: scale(1.05); /* Slightly enlarges button on hover */
}

.button-cls:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transform: scale(0.98); /* Shrinks button slightly when clicked */
}

<div class="button-container">
    <button class="button"
        onclick="window.open('https://healow.com/apps/practice/teddy-bear-pediatrics-sleep-medicine-30200?v=2&t=1', '_blank')">
        Book Appointment
    </button>

    <button class="button"
        onclick="window.open('https://mycw239.ecwcloud.com/portal28055/jsp/login.jsp', '_blank')">
        Patient Portal
    </button>
</div>
