/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #fdfdff;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    font-weight: 500;
    color: #333;
}

h1 {
    font-size: 36px;
    color: #4A90E2;
}

h2 {
    font-size: 28px;
    border-bottom: 2px solid #EAEAEA;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #4A90E2;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-main {
    background-color: #D44A7E;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-main-sm {
    background-color: #D44A7E;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
}

.btn-secondary {
    background-color: #4A90E2;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-table {
    background-color: #fff;
    color: #D44A7E;
    padding: 5px 15px;
    border: 1px solid #D44A7E;
    border-radius: 5px;
    font-size: 13px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-line1 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #4A90E2;
    line-height: 1.1;
    display: block;
}

.logo-line2 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.1;
    display: block;
}

.footer-col .logo-line1,
.footer-col .logo-line2 {
    font-size: 16px;
}

.footer-col > a:first-child {
    margin-bottom: 15px;
}


/* Top Bar */
.top-bar {
    background-color: #F8F8F8;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #EAEAEA;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-content a {
    color: #555;
    margin: 0 15px;
}
.top-bar-content .phone {
    font-weight: 500;
    color: #333;
}

/* Header */
header {
    padding: 20px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-info, .header-address {
    font-size: 13px;
    color: #777;
}

.header-info p {
    margin: 0;
    font-size: 14px;
}

.header-warning {
    text-align: center;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 500;
    padding: 5px;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    background-color: #fceceb;
}

.header-contact {
    display: flex;
    align-items: center;
}

/* Page Wrapper */
.page-wrapper {
    padding: 30px 0;
}
.page-wrapper > .container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.sidebar {
    width: 250px;
    flex-shrink: 0;
}
.main-content {
    flex-grow: 1;
}

/* Sidebar */
.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #EAEAEA;
}
.sidebar nav li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    border-bottom: 1px solid #EAEAEA;
}
.sidebar nav li:last-child a {
    border-bottom: none;
}
.sidebar nav li a:hover, .sidebar nav li.submenu > a {
    background-color: #F8F8F8;
}
.sidebar nav li.submenu ul {
    border: none;
    padding-left: 15px;
}
.sidebar nav li.submenu ul a {
    color: #555;
    font-size: 13px;
    padding: 8px 15px;
}

/* Main Content Sections */
section {
    margin-bottom: 40px;
}

#hero {
    display: flex;
    align-items: center;
    gap: 30px;
}

#causes ul, #clinical-symptoms ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}
.section-image {
    margin-top: 20px;
    text-align: center;
}

/* Forms */
.form-container {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 5px;
}
.pink-bg { background-color: #FCEFF4; }
.blue-bg { background-color: #EAF2FB; }

.form-container .form-text {
    flex-grow: 1;
}
.form-container h3 {
    margin-top: 0;
    font-size: 24px;
}
.form-container form input {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-container .privacy-policy {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}
.form-image {
    flex-shrink: 0;
    margin-left: 30px;
}

#consultation-form-2 .form-text {
    text-align: center;
}

/* Non-Surgical Treatment */
.method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.method-image {
    flex-shrink: 0;
}

/* Service Cost Table */
#service-cost table {
    width: 100%;
    border-collapse: collapse;
}
#service-cost td {
    padding: 15px;
    border: 1px solid #EAEAEA;
}
#service-cost tr td:nth-child(2) {
    font-weight: 500;
    width: 100px;
}
#service-cost tr td:nth-child(3) {
    text-align: right;
    width: 120px;
}

/* Specialists */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.specialist-card {
    text-align: center;
}
.specialist-card h4 {
    margin-bottom: 5px;
}
.specialist-card p {
    font-size: 13px;
    color: #777;
    margin: 5px 0;
}
.specialist-card .btn-secondary {
    font-size: 13px;
    padding: 8px 15px;
    background-color: #FCEFF4;
    color: #D44A7E;
    border: 1px solid #D44A7E;
}


/* Reviews */
#reviews form input, #reviews form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    box-sizing: border-box;
}
#reviews form textarea {
    height: 100px;
    resize: vertical;
}

#reviews .rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#reviews .stars {
    cursor: pointer;
    color: #ccc;
    margin-left: 10px;
}

#reviews .star {
    font-size: 20px;
    transition: color 0.2s;
}

#reviews .star:hover,
#reviews .star.active {
    color: #ffc107;
}


/* Footer */
footer {
    background-color: #F8F8F8;
    padding: 40px 0;
    border-top: 1px solid #EAEAEA;
    color: #555;
    font-size: 13px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
}
.footer-col {
    width: 23%;
}
.footer-col h4 {
    color: #333;
    font-size: 16px;
    margin-top: 0;
}
.footer-col a {
    display: block;
    color: #555;
    margin-bottom: 10px;
}

i {
    margin-right: 8px;
    color: #4A90E2;
}

.top-bar-content i {
    color: #D44A7E;
}

.license {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* About Page */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
    text-align: center;
}

.advantage-item i {
    color: #D44A7E;
    margin-bottom: 15px;
}

.advantage-item p {
    font-size: 14px;
}

/* Promotions Page */
.promotion-item {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    gap: 20px;
}

.promotion-details h3 {
    margin-top: 0;
    color: #D44A7E;
}
.promotion-dates {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

/* Contacts Page */
.contact-info-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info a {
    color: #D44A7E;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

.contact-info h4 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 5px;
}

.contact-map iframe {
    border-radius: 5px;
    border: none;
}

/* Price List Page */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.price-table th, .price-table td {
    padding: 15px;
    border-bottom: 1px solid #EAEAEA;
    text-align: left;
}

.price-table th {
    background-color: #f9f9f9;
    font-weight: 500;
}

.price-table .category-row td {
    background-color: #4A90E2;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Programs Page */
.program-item {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    gap: 20px;
}

.program-details h3 {
    margin-top: 0;
    color: #D44A7E;
}
.program-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.program-details li {
    margin-bottom: 10px;
}
.program-details .fa-check {
    color: #34C759;
}
.program-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
}
.program-price span {
    font-weight: bold;
}

/* Service Page (Gynecology, Urology etc.) */
.service-page-content {
    display: flex;
    gap: 30px;
}

.service-description {
    flex-grow: 1;
}

.service-description h3 {
    color: #D44A7E;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.service-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}
.service-list .fa-check {
    color: #34C759;
}
.doctors-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    background-color: #f9f9f9;
    border-radius: 5px;
    width: 280px;
    flex-shrink: 0;
}

.doctors-list h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.doctors-list li {
    margin-bottom: 15px;
}

.doctors-list a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doctors-list img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info-sidebar h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.doctor-info-sidebar p {
    margin: 0;
    font-size: 12px;
    color: #777;
} 