body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 24px;
}

.header-contacts {
    text-align: right;
}

.header-phone-number {
    font-size: 22px;
    font-weight: bold;
}

.header-work-hours {
    font-size: 14px;
    color: #777;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background-color: #00A99D;
    color: #fff;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #008a7d;
}

/* Main Content */
.main {
    padding: 40px 0;
}

.urology-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.urology-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.urology-section p {
    font-size: 16px;
    line-height: 1.6;
}

.urology-section ul {
    list-style: none;
    padding-left: 0;
}

.urology-section ul li {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.urology-section ul li::before {
    content: '•';
    color: #00A99D;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
}

/* Advantages Section */
.advantages-section {
    padding: 40px 0;
    text-align: center;
}
.advantages-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}
.advantage-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s, transform 0.3s;
}
.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.advantage-item h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #00A99D;
}

/* How it works Section */
.how-it-works-section {
    padding: 20px 0 40px;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00A99D;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-content h4 {
    margin: 0 0 5px;
    font-size: 20px;
}

.step-content p {
    margin: 0;
    line-height: 1.6;
}

/* Specialists Section */
.specialists-section {
    padding: 40px 0;
    text-align: center;
    background-color: #fff;
}
.specialists-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}
.specialist-card {
    padding: 25px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.specialist-card h3 {
    margin: 0 0 5px;
    font-size: 22px;
}
.specialist-card .specialty {
    color: #00A99D;
    font-weight: bold;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0 40px;
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    padding: 20px 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #00A99D;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
}
.faq-item.active .faq-answer {
    padding: 0 15px 20px;
    max-height: 500px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    background-color: #eef7f7;
    border: 1px solid #d1e7e7;
    border-radius: 5px;
    padding: 30px;
    margin-top: 40px;
}

.cta-icon {
    font-size: 40px;
    color: #00A99D;
    margin-right: 30px;
    border: 2px solid #00A99D;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.cta-content {
    flex-grow: 1;
}

.cta-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.cta-content p {
    margin: 0;
    font-size: 16px;
}

.cta-content a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    border-bottom: 1px solid #555;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
}

.footer strong {
    color: #fff;
}

.footer-content a {
    text-decoration: none;
    color: inherit;
}

.copyright p {
    margin: 0 0 10px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.copyright a {
    color: #888;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

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

/* Privacy Page */
.privacy-container {
    padding: 40px 0;
}
.privacy-container h1 {
    font-size: 32px;
}
.privacy-container h2 {
    font-size: 24px;
    margin-top: 30px;
}
.privacy-container p, .privacy-container li {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}
.privacy-container a {
    color: #00A99D;
}
.privacy-container a:hover {
    text-decoration: underline;
} 