.intro-text {
    text-align: justify;
}

.navbar-brand {
    font-size: 1.3rem;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 0.85rem;
    }
}

.ana-name {
    font-size: 7rem;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 768px) {
    .ana-name {
        font-size: 2.5rem;
    }
}

.col-md-6 h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

.col-md-6 .intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #444;
    font-weight: 500;
    line-height: 1.8;
}

.blue_color {
    background-color:#cfe8ff;

}

.btn-custom-outline {
  color: #508ec8;
  border: 1px solid #508ec8;
  background-color: transparent;
}

.btn-custom-outline:hover {
  color: #fff;
  background-color: #508ec8;
  border-color: #508ec8;
}

.btn-custom-outline:focus {
  box-shadow: 0 0 0 0.2rem rgba(122, 79, 138, 0.25);
}

.image-crop {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.image-crop img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: center 85%;
}


.navbar-glass {
  background: rgba(180, 180, 180, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.contact-section h2 {
    font-weight: 600;
    color: #333;
    font-size: 2rem;
}

.contact-item {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-item h5 {
    color: #333;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #508ec8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #3a6a9e;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}