body {
    font-family: Arial, sans-serif;
    background: url('../Images/bg1.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    padding: 50px;
}

.container {
    max-width: 400px;
    margin: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

h1 {
    margin-bottom: 20px;
    font-size: 22px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    padding: 12px;
    margin: 8px auto;
    text-decoration: none;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn img {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

.btn_Facebook   { background-color: #1877f2; }
.btn_Instagram  { background: linear-gradient(45deg, #f58529, #d9317f); }
.btn_TikTok     { background-color: #000; }
.btn_Contact    { background-color: #ffa500; }

.btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
}
