/* Responsive Styles */
@media (max-width: 767px) {
    .container {
        padding: 1rem;
    }

    .card-body {
        padding: 1.5rem !important;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .bio-section {
        text-align: center;
        margin: 1.5rem 0;
    }

    .action-buttons {
        justify-content: center !important;
        width: 100%;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-body {
        padding: 2rem !important;
    }
}

/* Improve card layout on larger screens */
@media (min-width: 992px) {
    .card {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .card-body {
        padding: 3rem !important;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        margin-bottom: 2rem;
    }

    .company-logo {
        max-width: 140px;
    }

    .text-gradient {
        font-size: 3rem;
    }

    .bio-section {
        max-width: 80%;
    }
}

/* Adjust cover image for different screen sizes */
.cover-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .cover-img {
        height: 250px;
    }
}

@media (min-width: 1200px) {
    .cover-img {
        height: 300px;
    }

    .container {
        padding: 2rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}
