  :root {
            --primary-red: #dc3545;
            --dark-red: #c82333;
            --light-bg: #f8f9fa;
        }
        
        
        
        .red-underline {
            border-bottom: 3px solid var(--primary-red);
            display: inline-block;
            padding-bottom: 5px;
        }
        
        .contact-card {
            border-left: 4px solid var(--primary-red);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }
        
        .btn-red {
            background: var(--primary-red);
            color: white;
        }
        
        .btn-red:hover {
            background: var(--dark-red);
            color: white;
        }
        
        .btn-outline-red {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }
        
        .btn-outline-red:hover {
            background: var(--primary-red);
            color: white;
        }
        
        #googleForm {
            min-height: 800px;
            width: 100%;
            border: none;
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }
        
        .whatsapp-btn {
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            font-size: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

    .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}