* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f5f5f5;
}

/* Navbar */
.navbar {
    background-color: transparent;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.services-navbar {
    background-color: transparent;
    color: #fff;
}

.services-navbar .nav-link,
.services-navbar .nav-lang,
.services-navbar .navbar-logo a {
    color: #fff;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link.active {
    color: #ff0000;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-icon {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 0.8rem 2rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff0000;
}

.nav-lang {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-button {
    background-color: #ff0000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #cc0000;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('phone/JF.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content .hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out 0.3s forwards;
}

.hero-content .hero-button {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out 0.6s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-button {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #fff;
    color: #000;
}

.hero-image {
    display: none;
}

/* Reasons Section */
.reasons {
    padding: 6rem 0;
    background-color: #fff;
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reasons h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 1rem;
}

.reason-item p {
    font-size: 1.1rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reason-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    font-weight: normal;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.solutions h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.solutions-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab {
    background-color: #f0f0f0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tab:hover {
    background-color: #e0e0e0;
}

.tab.active {
    background-color: #ff0000;
    color: #fff;
}

.solution-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.solution-image {
    flex: 0 0 400px;
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.solution-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
}

.solution-title h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.solution-title p {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.solution-buttons {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.solution-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.solution-details {
    flex: 1;
    padding: 2rem;
}

.solution-details p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .solution-content {
        flex-direction: column;
    }
    
    .solution-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
}

.about p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.about-button {
    background-color: #ff0000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.about-button:hover {
    background-color: #cc0000;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #000;
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-info p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.2rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff0000;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-contact p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-icon {
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}

/* Services Page Styles */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Page Styles */
.about-hero {
    background-color: #000;
    color: #fff;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

.company-intro {
    padding: 6rem 0;
    background-color: #fff;
}

.company-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-intro h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
}

.company-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.history-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.history-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 4rem;
    color: #000;
    text-align: center;
    position: relative;
}

.history-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

.timeline-container {
    position: relative;
    padding-left: 80px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 10px;
    bottom: -20px;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.timeline-date {
    position: absolute;
    left: -120px;
    top: 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #ff0000;
    min-width: 100px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: -15px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff0000;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ff0000;
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .history-section {
        padding: 4rem 0;
    }
    
    .timeline-container {
        padding-left: 80px;
    }
    
    .timeline-container::before {
        left: 60px;
    }
    
    .timeline-date {
        left: -80px;
        min-width: 60px;
    }
    
    .timeline-dot {
        left: -69px;
    }
    
    .timeline-content {
        padding-left: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .reasons-container {
        padding: 0 1rem;
    }

    .reasons h2 {
        font-size: 2rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .services-header h1 {
        font-size: 2rem;
    }

    .services-container {
        padding: 0 1rem;
    }

    .service-info,
    .service-image {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .about-hero-container {
        padding: 0 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .company-intro-container {
        padding: 0 1rem;
    }

    .team-container {
        padding: 0 1rem;
    }

    .history-container {
        padding: 0 1rem;
    }

    .contact-header-container {
        padding: 0 1rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        min-width: 100%;
    }

    .timeline-container {
        padding-left: 60px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-date {
        left: -60px;
        min-width: 60px;
    }

    .timeline-dot {
        left: 25px;
    }

    .timeline-content {
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-mobile-menu.active {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-logo a {
        font-size: 1.2rem;
    }

    .navbar-actions {
        gap: 1rem;
        justify-content: flex-start;
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .reasons {
        padding: 4rem 0;
    }

    .reasons h2 {
        font-size: 1.8rem;
    }

    .services-header h1 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .service-info h2 {
        font-size: 1.5rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .company-intro h2 {
        font-size: 1.8rem;
    }

    .team-section h2 {
        font-size: 1.8rem;
    }

    .history-section h2 {
        font-size: 1.8rem;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .timeline-container {
        padding-left: 50px;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-date {
        left: -50px;
        min-width: 50px;
        font-size: 0.9rem;
    }

    .timeline-dot {
        left: 15px;
    }

    .timeline-content {
        padding-left: 10px;
    }

    .timeline-content h3 {
        font-size: 0.9rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .reasons h2 {
        font-size: 1.6rem;
    }

    .services-header h1 {
        font-size: 1.6rem;
    }

    .about-hero h1 {
        font-size: 1.6rem;
    }

    .company-intro h2 {
        font-size: 1.6rem;
    }

    .team-section h2 {
        font-size: 1.6rem;
    }

    .history-section h2 {
        font-size: 1.6rem;
    }

    .contact-header h1 {
        font-size: 1.6rem;
    }

    .service-info h2 {
        font-size: 1.3rem;
    }

    .contact-info h2 {
        font-size: 1.3rem;
    }

    .contact-form h2 {
        font-size: 1.3rem;
    }

    .timeline-container {
        padding-left: 40px;
    }

    .timeline-container::before {
        left: 15px;
    }

    .timeline-date {
        left: -40px;
        min-width: 40px;
        font-size: 0.8rem;
    }

    .timeline-dot {
        left: 10px;
    }

    .timeline-content {
        padding-left: 8px;
    }

    .timeline-content h3 {
        font-size: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .reasons h2 {
        font-size: 1.4rem;
    }

    .services-header h1 {
        font-size: 1.4rem;
    }

    .about-hero h1 {
        font-size: 1.4rem;
    }

    .company-intro h2 {
        font-size: 1.4rem;
    }

    .team-section h2 {
        font-size: 1.4rem;
    }

    .history-section h2 {
        font-size: 1.4rem;
    }

    .contact-header h1 {
        font-size: 1.4rem;
    }

    .service-info h2 {
        font-size: 1.2rem;
    }

    .contact-info h2 {
        font-size: 1.2rem;
    }

    .contact-form h2 {
        font-size: 1.2rem;
    }

    .timeline-container {
        padding-left: 35px;
    }

    .timeline-container::before {
        left: 12px;
    }

    .timeline-date {
        left: -35px;
        min-width: 35px;
        font-size: 0.7rem;
    }

    .timeline-dot {
        left: 7px;
    }

    .timeline-content {
        padding-left: 6px;
    }

    .timeline-content h3 {
        font-size: 0.7rem;
    }

    .timeline-content p {
        font-size: 0.6rem;
    }
}

/* About Page Responsive */
@media (max-width: 480px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }

    .company-intro {
        padding: 4rem 0;
    }

    .team-section {
        padding: 4rem 0;
    }

    .history-section {
        padding: 4rem 0;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 1.1rem;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .team-photo {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 1rem;
    }

    .team-member p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .team-photo {
        width: 80px;
        height: 80px;
    }

    .team-member h3 {
        font-size: 0.9rem;
    }

    .team-member p {
        font-size: 0.7rem;
    }
}