/* Reset ve Değişkenler */
:root {
    --primary-color: #433763;    /* Ana renk */
    --primary-dark: #362d4f;     /* Ana rengin koyu tonu */
    --primary-light: #544579;    /* Ana rengin açık tonu */
    --white: #FFFFFF;
    --black: #333333;
    --gray-light: #F5F5F5;
    --background-dark: #433763;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #2D1A45;
    padding: 40px 80px;
}

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

.header-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

/* Noise Overlay */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Navbar Stilleri */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: relative;
    z-index: 1;
    background: transparent;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin: 0 12px;
}

.nav-links a:hover {
    opacity: 1;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signin-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.get-started-btn {
    background: var(--white);
    color: var(--background-dark);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

/* Announcement Bar */
.announcement-bar {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-align: center;
    margin: 10px auto;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
}

/* Hero Content */
.hero-section {
    background-color: #2D1A45;
    padding: 40px 80px;
    min-height: auto;
}

.hero-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-left {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    margin-bottom: 32px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
}

.app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ratings {
    display: flex;
    gap: 24px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-item img {
    height: 20px;
}

.stars {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.reviews {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Showcase grid stilleri aynı kalacak */

@media (max-width: 1024px) {
    .hero-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-left {
        max-width: 100%;
    }
    
    .ratings {
        margin-top: 40px;
    }
}

.try-free-btn {
    padding: 12px 24px;
    background-color: #ffffff;
    color: #2D1A45;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.request-demo-btn {
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 8px;  
}

.app-buttons a {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.app-buttons a:hover {
    opacity: 0.8;
}

.app-buttons img {
    height: 36px;
    width: auto;
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .app-buttons img {
        height: 32px;
    }
}

/* App Showcase */
.app-showcase {
    margin-bottom: 0;
    padding: 0 5%;
    display: flex;
    justify-content: center;
}

.app-screens {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Info Section */
.info-section {
    padding: 20px 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.info-card {
    background-color: #F8F1FE;
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subtitle {
    color: #2D1A45;
    font-size: 14px;
    font-weight: 500;
}

.info-content h2 {
    color: #2D1A45;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
}

.info-content p {
    color: rgba(45, 26, 69, 0.8);
    font-size: 15px;
    line-height: 1.5;
}

.find-more-btn {
    background: #2D1A45;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    width: fit-content;
}

@media (max-width: 768px) {


    .info-card {
        padding: 24px;
        text-align: center;
    }

    .find-more-btn {
        margin: 8px auto;
    }

    .info-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .info-card {
        padding: 20px;
    }

    .find-more-btn {
        width: 100%;
        text-align: center;
    }
}

/* Responsive Tasarım */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .app-showcase {
        margin-top: 2rem;
    }

    .app-screens {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .auth-buttons button {
        padding: 0.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .announcement-bar {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }


    .info-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .info-content p {
        font-size: 1rem;
    }
}

/* App Features Section */
.app-features {
    background: var(--background-dark);
    padding: 0 5%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.feature-screens {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    transform: translateY(-50%);
}

.screen {
    flex: 1;
    max-width: 300px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .feature-screens {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .screen {
        max-width: 280px;
    }
}

.badge-section {
    width: 100%;
    overflow: hidden;
    padding-top: 20px;
}

.badge-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.topic-badge {
    display: flex;
    align-items: center;

    border: 1px solid rgba(78, 64, 94, 1);
    border-radius: 100px;
    padding: 10px 20px;
    margin-right: 10px;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

@supports (-webkit-backdrop-filter: none) {
    .topic-badge {
        background: #3F3150; /* Safari için biraz daha opak */
        border: 1px solid rgba(78, 64, 94, 1);
    }
}

.badge-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(300%);
    transform: scale(0.91);
    transform-origin: left center;
    position: relative;
    z-index: 2;
}

@keyframes scroll {
    0% {
        transform: translateX(0) scale(0.91);
    }
    100% {
        transform: translateX(-66.6666%) scale(0.91);
    }
}

.badge-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.emoji {
    margin-right: 10px;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hover durumunda animasyonu durdurma */
.badge-container:hover .badge-track {
    animation-play-state: paused;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .topic-badge {
        padding: 8px 16px;
        background: rgba(54, 45, 79, 0.98); /* Mobilde daha opak */
        border: 1px solid rgba(78, 64, 94, 1);
    }
}

@media screen and (max-width: 480px) {
    .topic-badge {
        padding: 6px 12px;
    }

    .emoji {
        font-size: 16px;
    }

    .badge-text {
        font-size: 14px;
    }
}

.badge-title {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.features-showcase {
    background-color: #2D1A45;
    padding: 0 120px 80px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 95%;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Efektleri */
.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.showcase-item:hover .showcase-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Chat window için özel efekt */
.showcase-item.chat-window:hover .showcase-image {
    filter: brightness(1.1) hue-rotate(5deg);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .showcase-item:hover {
        transform: translateY(-4px);
    }
}

.chat-window {
    background-color: #3D2659;
    padding: 20px;
}

.chat-window img {
    object-fit: contain;
}

/* Responsive tasarım için */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 40px;
    }
    
    .showcase-grid {
        gap: 16px;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
    }
}

/* Responsive tasarım için */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 56px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
        padding: 0px 40px 0px 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .header-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {


    .header-card {
        padding: 0px;
    }
}

.services-section {
    background-color: #2D1A45;
    margin-bottom: 20px;
}

.services-card {
    background-color: #F8F1FE;
    border-radius: 24px;
    padding: 40px;
}

.services-content {
    display: flex;
    gap: 40px;
}

.app-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-preview img {
    max-width: 80%;
    height: auto;
}

.services-right {
    flex: 1.2; /* Sağ tarafa biraz daha fazla alan */
}

.services-header {
    margin-bottom: 32px;
    max-width: 600px;
}

.services-header h2 {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 600;
}

.services-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
}

.service-icon {
    margin-bottom: 12px;
}

.service-icon img {
    width: 28px;
    height: 28px;
    color: #2D845F;
}

.service-card h3 {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2D845F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.learn-more svg {
    fill: currentColor;
    transition: transform 0.2s ease;
    width: 16px;
    height: 16px;
}

.learn-more:hover svg {
    transform: translateX(4px);
}

.doctors-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
    overflow-y: auto;
}

.doctor-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.doctor-details h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.specialty {
    color: #666;
    font-size: 14px;
}

.location {
    color: #666;
    font-size: 14px;
    margin: 4px 0;
}

.stats {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #666;
}

.contact-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .services-content {
        flex-direction: column;
    }

    .app-preview {
        order: -1; /* Mobilde üste taşır */
    }
}

@media (max-width: 768px) {
    .services-section {
    }

    .services-card {
        padding: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .app-preview img {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .app-preview img {
        max-width: 50%;
    }
}

.service-icon .emoji {
    font-size: 32px;
    line-height: 1;
}

.badges {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.badge {
    background-color: #F5F5F5;
    color: #666;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

/* Opsiyonel: Badge'lere farklı renkler vermek isterseniz */
.badge:first-child {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.badge:last-child {
    background-color: #E3F2FD;
    color: #1565C0;
}

/* Podcast Section özel stilleri */
.podcast-card {
    background-color: #F8F1FE;
    border-radius: 24px;
    padding: 40px;
}

.podcast-content {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse; /* Ters sıralama */
}

.podcast-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.podcast-preview img {
    max-width: 80%;
    height: auto;
}

.podcast-right {
    flex: 1.2;
}

.podcast-header {
    margin-bottom: 32px;
    max-width: 600px;
}

.podcast-header h2 {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 600;
}

.podcast-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.podcast-card-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.podcast-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.podcast-card-item .service-icon {
    margin-bottom: 12px;
}

.podcast-card-item .service-icon .emoji {
    font-size: 32px;
    line-height: 1;
}

.podcast-card-item h3 {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.podcast-card-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .podcast-content {
        flex-direction: column;
    }

    .podcast-preview {
        order: -1;
    }

    .podcast-preview img {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .podcast-card {
        padding: 24px;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .podcast-header h2 {
        font-size: 28px;
    }

    .podcast-header p {
        font-size: 15px;
        text-align: center;
    }

    .podcast-preview img {
        max-width: 70%;
    }
}

@media screen and (max-width: 480px) {
    .podcast-card {
        padding: 20px;
    }

    .podcast-header h2 {
        font-size: 24px;
        text-align: center;
    }

    .podcast-card-item {
        padding: 16px;
    }
}

/* Terapist Section özel stilleri */
.therapist-card {
    background-color: #F8F1FE;  /* info-card ile aynı renk */
    border-radius: 24px;
    padding: 40px;
}

.therapist-content {
    display: flex;
    gap: 40px;
}

.therapist-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.therapist-preview img {
    max-width: 70%;
    height: auto;
}

.therapist-right {
    flex: 1.2;
}

.therapist-header {
    margin-bottom: 32px;
    max-width: 600px;
}

.therapist-header h2 {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 600;
}

.therapist-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.therapist-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
    overflow-y: auto;
}

/* Doktor kartları için mevcut stiller korundu */
.doctor-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.doctor-details h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .therapist-content {
        flex-direction: column;
    }

    .therapist-preview {
        order: -1;
    }

    .therapist-preview img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .therapist-card {
        padding: 24px;
    }

    .therapist-header h2 {
        font-size: 28px;
    }

    .therapist-header p {
        font-size: 15px;
        text-align: center;
    }

    .therapist-preview img {
        max-width: 70%;
    }
}

@media screen and (max-width: 480px) {
    .therapist-card {
        padding: 20px;
    }

    .therapist-header h2 {
        font-size: 24px;
        text-align: center;
    }
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .info-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 13px;
        text-align: center;
    }

    .info-content {
        text-align: center;
    }

    .info-content h2 {
        font-size: 22px;
    }

    .info-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .subtitle {
        font-size: 12px;
    }

    .info-content h2 {
        font-size: 20px;
    }

    .info-content p {
        font-size: 13px;
    }
}

.doctor-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.doctor-details h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .doctor-card {
        padding: 12px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .doctor-info {
        flex-direction: column;
        gap: 12px;
    }

    .doctor-avatar {
        width: 80px;
        height: 80px;
    }

    .doctor-details h3 {
        font-size: 15px;
    }

    .contact-btn {
        width: 100%;
        padding: 10px 16px;
    }
}

@media screen and (max-width: 480px) {
    .doctor-card {
        padding: 10px;
    }

    .doctor-avatar {
        width: 70px;
        height: 70px;
    }

    .doctor-details h3 {
        font-size: 14px;
    }

    .contact-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Footer Stilleri */
.footer {
    max-width: 1400px;
    width: 100%;
    margin: 40px auto 0;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    width: 60px;
    height: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
    
    .social-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
}

.footer-links h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 24px;
        margin: 0px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h3 {
        margin-bottom: 12px;
    }

    .footer-links ul {
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 20px;
        margin-top: 20px;
    }

    .footer-brand img {
        width: 100px;
    }

    .footer-links h3 {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* Testimonial Section Stilleri */
.testimonial-section {
    padding: 0px 0;
}

.testimonial-card {
    background-color: #F8F1FE;
    border-radius: 24px;
    padding: 40px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header h2 {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 4px;
    font-weight: 500;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

.rating {
    font-size: 14px;
    color: #FFB800;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .testimonial-card {
        padding: 32px;
    }

    .testimonial-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header h2 {
        font-size: 28px;
    }

    .testimonial-header p {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-header h2 {
        font-size: 24px;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-quote p {
        font-size: 14px;
    }

    .author-info h4 {
        font-size: 15px;
    }

    .author-info span {
        font-size: 13px;
    }
}

/* Blog Section Stilleri */
.blog-section {
    padding: 0px 0;
}

.blog-card {
    background-color: #F8F1FE;
    border-radius: 24px;
    padding: 40px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h2 {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    background-color: #F5F5F5;
    color: #666;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.read-more .arrow {
    transition: transform 0.2s ease;
}

.read-more:hover .arrow {
    transform: translateX(4px);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-card {
        padding: 24px;
    }

    .blog-header h2 {
        font-size: 28px;
    }

    .blog-header p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-header h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 16px;
    }
}

/* Privacy Page Styles */
.privacy-content {
    padding: 40px;
    color: var(--white);
}

.privacy-header {
    text-align: center;
    margin-bottom: 48px;
}

.privacy-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 500;
}

.privacy-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 20px;
}

.privacy-section li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--primary-color);
}

.privacy-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .privacy-content {
        padding: 24px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 16px;
    }

    .privacy-header h1 {
        font-size: 24px;
    }

    .privacy-section {
        padding: 16px;
    }
}

.privacy-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.privacy-section a:hover {
    opacity: 0.8;
}

.privacy-footer a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.privacy-footer a:hover {
    opacity: 0.8;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}