.about {
 font-size: 1.3rem;
}

  :root {

        }

#name{
display:none;
}
  :root {
            --primary-blue: #2c5aa0;
            --mint-green: #65BBA8;
            --dark-blue: #1e3a5f;
 --bg-blue:#f5f9fc;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Header */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-left: 10px;
        }

        .btn-mint {
            background: var(--mint-green);
            color: white;
            border-radius: 25px;
            padding: 10px 25px;
            font-weight: 600;
            border: none;
            box-shadow: 0 4px 15px rgba(125, 211, 192, 0.3);
            transition: all 0.3s;
        }

        .btn-mint:hover {
            background: #6bc4b0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(125, 211, 192, 0.4);
            color: white;
        }
         .text-blue{
             color: var(--primary-blue);
          }
    .bg-blue{
            background-color: var(--bg-blue);
          }
 .text-mint{
             color: var(--mint-green);
          }
        #pacienti{
          background: var(--dark-blue);
         
        }
#pacienti h3{
      color: var(--mint-green);
}
#pacienti p{
      color: white;
   font-size:130%;
}

        /* Hero */
        .hero {
            height: 600px;
            background: linear-gradient(rgba(44, 90, 160, 0.3), rgba(44, 90, 160, 0.3)),
                        url('images/diabetol.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .hero h1 {
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        /* Service Cards */
        .service-card {
            transition: all 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--mint-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        /* Calendar */
        .calendar-day {
          
        
            text-align: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .calendar-day.available {
            background: #d4f4e7;
            color: var(--primary-blue);
            font-weight: 500;
        }

        .calendar-day.available:hover {
            background: var(--mint-green);
            color: white;
            transform: scale(1.1);
        }

        .calendar-day.past {
            color: #ccc;
            cursor: default;
        }

        .calendar-day.header {
            font-weight: 600;
            color: var(--primary-blue);
            cursor: default;
        }

        /* Doctor Photo */
        .doctor-photo {
            width: 130px;
            height: 130px;
            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: bold;
        }

        /* Status Indicator */
        .status-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(125, 211, 192, 0.2);
            border-radius: 5px;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            background: var(--mint-green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Chatbot */
        .chatbot {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--mint-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(125, 211, 192, 0.4);
            transition: all 0.3s;
            z-index: 1000;
        }

        .chatbot:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(125, 211, 192, 0.6);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            color: white;
        }

        .footer-map {
            background: var(--primary-blue);
            border-radius: 10px;
            height: 230px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
        }
