/* Center alignment fixes */
body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Team member image fixes */
.team-slider {
    height: 620px !important; /* Increased height for larger portraits */
}

.member-image {
    width: 300px !important; /* Increased image size */
    height: 300px !important;
}

.member-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Changed to contain to show full image */
    padding: 10px !important; /* Added padding to prevent image from touching the border */
}

/* Service cards and other content alignment */
.services-grid,
.features-grid,
.testimonials-grid {
    width: 100% !important;
}

.service-card,
.feature,
.testimonial {
    margin: 0 auto !important;
}

/* Sections width fix */
.services, .features, .about, .team, .testimonials {
    width: 100% !important;
    max-width: 1200px !important;
}

/* Navigation width fix */
.nav-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Hero section fix */
.hero-content {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Banner fix */
.banner-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Footer fix */
.footer .container {
    width: 100% !important;
    max-width: 1200px !important;
}