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

body {
    font-family: 'Schibsted Grotesk', sans-serif;
    overflow-x: hidden;
}

.background {
    width: 100%;
    min-height: 100vh;
    background-image: url('wall.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 24px;
    display: flex;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-left {
    flex: 0 0 40%;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.clinic-image {
    width: 100%;
    height: auto;
    max-height: 280px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 20px;
}

.card-right {
    flex: 1;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
}

.title {
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    color: #8B9FA8;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 13px;
    color: #8B9FA8;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
    font-style: italic;
}

.buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
}

.btn {
    padding: 6px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:visited {
    color: inherit;
}

.btn-phone {
    background-color: #A8CBCC;
    color: #6B8487;
}

.btn-phone:hover {
    background-color: #8FB5B6;
    transform: translateY(-2px);
}

.btn-email {
    background-color: #E5C4C4;
    color: #6B8487;
}

.btn-email:hover {
    background-color: #D4A9A9;
    transform: translateY(-2px);
}

.doctoralia-widget {
    width: 100%;
    max-width: 600px;
}

.social-icons {
    margin-bottom: 12px;
}

.instagram-link {
    color: #8B9FA8;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #A8CBCC;
}

.wave-icon {
    width: 45px;
    height: auto;
    opacity: 0.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        max-width: 500px;
    }
    
    .card-left {
        flex: none;
        padding: 20px;
    }
    
    .clinic-image {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
        margin-bottom: 20px;
    }
    
    .card-right {
        padding: 20px;
    }
    
    .logo {
        width: 140px;
        margin-bottom: 20px;
    }
    
    .title {
        font-size: 24px;
    }
}
