@import url("../Repaircafe/Repaircafe.css");
.rc-website { 
    max-width: 900px; 
    margin: 0 auto; 
    font-family: 'Segoe UI', Tahoma, sans-serif; 
    color: #333; 
}
.rc-header { 
    background: #e67e22; 
    color: white; 
    padding: 50px 20px; 
    text-align: center; 
    border-radius: 10px; 
    margin-bottom: 30px; 
}
.rc-header h1 { margin: 0; font-size: 2.5em; }
.rc-info-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center; 
    margin-bottom: 40px; 
}
.rc-card { 
    background: #fff; 
    border: 1px solid #eee; 
    border-bottom: 5px solid #d35400; 
    padding: 25px; 
    border-radius: 8px; 
    width: 250px; 
    text-align: center; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
}
.rc-services { 
    text-align: center; 
    background: #f9f9f9; 
    padding: 30px; 
    border-radius: 10px; 
}
.rc-tags { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin: 20px 0; 
    flex-wrap: wrap; 
}
.rc-tags span { 
    background: #2c3e50; 
    color: white; 
    padding: 8px 18px; 
    border-radius: 20px; 
    font-weight: bold; 
}
.fb-button { 
    display: inline-block; 
    background: #1877f2; 
    color: white; 
    padding: 15px 30px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    transition: background 0.3s; 
}
.fb-button:hover { background: #145dbf; }
.rc-footer { text-align: center; margin-top: 40px; padding-bottom: 40px; }