body {
    font-family: Arial, sans-serif;
}

header {
    background: #000000;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.profile-photo {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.section-title {
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
    font-size: 24px;
}

.cta-btn, 
.btn {
    background-color: #FFB347 !important;
    color: #000000 !important;
    border: none !important;
    padding: 10px 20px;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    text-decoration: none;
    color: #FFB347;
}

footer a:hover {
    color: white;
}

.social-icons {
    margin: 1rem 0;
}

.social-icons a {
    color: #FFB347;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}