.about-section h2,.card-content h2{font-weight:700}.custom-section{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px;padding:40px;max-width:1400px;margin:0 auto}.card{background-color:#fff;border:2px solid #e0e0e0;border-radius:8px;overflow:hidden;transition:transform .3s,box-shadow .3s;display:flex;flex-direction:column}.card:hover{transform:translateY(-5px);box-shadow:0 8px 20px rgba(0,0,0,.15)}.card-image{width:100%;height:250px;background-size:cover;background-position:center}.card-content{padding:20px;text-align:center}.card-content h2{font-size:24px;color:#222;margin-bottom:10px}.card-content .desc{font-size:16px;color:#555;line-height:1.5;margin-bottom:20px}.cta-btn-buildings{background-color:#1a73e8;color:#fff;padding:12px 24px;border:none;border-radius:5px;font-size:16px;font-weight:500;cursor:pointer;transition:background-color .3s}.cta-btn-buildings:hover{background-color:#1557b0}.about-section{max-width:75rem;margin:6rem auto;padding:1.25rem}.about-section .row{background:rgba(255,255,255,.1);border-radius:12px;margin:1.875rem 0 0;border:1px solid #2c2c2c;transition:transform .3s ease-in-out,box-shadow .3s ease-in-out}.about-section .row:hover{transform:scale(1.02);box-shadow:0 4px 8px rgba(0,0,0,.1)}.tower-image{max-width:-webkit-fill-available;width:auto;height:auto;display:block;margin:1.25rem 0 .9375rem .9375rem;border-radius:8px;object-fit:cover}.about-section h2{font-size:1.625rem;color:#000;margin-bottom:.75rem}.about-section p,.about-section ul{font-size:1rem;color:#333}.about-section p{line-height:1.7;margin-bottom:1.125rem}.about-section ul{text-align:left}

.floor-plan-links {
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.floor-plan-links a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
}

.floor-plan-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.property-cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.cta-btn-whatsapp, .cta-btn-form {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.cta-btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cta-btn-form {
    background-color: #000;
    color: #ffd700;
    border: 1px solid #ffd700;
}

.cta-btn-form:hover {
    background-color: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .property-cta-container {
        flex-direction: column;
        align-items: center;
    }
    .cta-btn-whatsapp, .cta-btn-form {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}