body {
    font-family: 'Montserrat', sans-serif;
    color: #2a2a2a;
    background-color: #fafafa;
    letter-spacing: 0.01em;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Infant', serif;
    letter-spacing: -0.02em;
    font-weight: 600;
}
.accent-color {
    color: #00695c;
}
.accent-bg {
    background-color: #00695c;
}
.btn-primary {
    background-color: #00695c;
    color: white;
    padding: 12px 28px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #004d40;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 105, 92, 0.3);
}
.btn-secondary {
    background-color: white;
    color: #00695c;
    border: 1px solid #00695c;
    padding: 12px 28px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #f5fffd;
    transform: translateY(-2px);
}
.card {
    border-radius: 2px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #e0f2f1;
    color: #00695c;
    font-size: 18px;
    opacity: 0.85;
}
.testimonial {
    border-radius: 0;
    background-color: white;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.05);
    padding: 32px;
    border-left: 3px solid #00695c;
}
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 0;
    margin-right: 16px;
}
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    background-color: white;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: none;
}
.visible {
    display: block;
}

/* WhatsApp Button Styling */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}
