/* General Body Styles */
body {
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    background-color: #F3F4F6;
    color: #1F2937;
    margin: 0;
}

h1, h2, h3 {
    text-wrap: balance;
}

/* Main container */
.site-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-left: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
}

/* Header */
header {
    padding: 1.5rem 1rem;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

header .logo {
    height: 2.5rem;
}

/* Hero Section */
.hero {
    background-color: #F97316;
    color: #FFFFFF;
    padding: 4rem 2rem;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.hero .text-content {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.hero p {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 300;
}

.hero .image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-image {
    width: 16rem;
    object-fit: contain;
}

/* About Us Section */
.about-us {
    padding: 4rem 2rem;
    position: relative;
    background-image: url('tulip.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 50%;
}

.about-us .container {
    
    margin: 0 auto;
    text-align: center;
    position: relative;
}



.about-us h2 {
    margin-top: 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: #F97316;
    word-break: keep-all;
}

.about-us p {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.625;
    word-break: break-word;
}

/* Services Section */
.services {
    background-color: #F9FAFB;
    padding: 4rem 2rem;
    background-image: url('tulip2.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
}

.services .container {
    margin: 0 auto;
}

.services .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}



.services h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.service-card .card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.service-card p {
    color: #4B5563;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
}

.contact .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
}

.contact .image-column img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.contact .info-column {
    position: relative;
}



.contact h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.contact .info-details > * + * {
    margin-top: 1rem;
}

.contact .info-details p {
    font-size: 1.125rem;
    margin: 0;
}

.contact .company-name {
    font-weight: 700;
    font-size: 1.25rem;
}

.contact .info-item {
    display: flex;
    align-items: center;
}

.contact .info-item.centered {
    align-items: center;
}

.contact .info-item a {
    color: #1F2937;
    text-decoration: none;
}

.contact .info-item a:hover {
    text-decoration: underline;
}

.map-links {
    margin-top: 0.5rem;
}

.map-links a {
    color: #F97316;
    text-decoration: none;
    margin-right: 1rem;
}

.map-links a:hover {
    text-decoration: underline;
}

.contact .info-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #6B7280;
    flex-shrink: 0;
}

.contact .info-icon.centered {
    margin-top: 0;
}

.contact .map-container {
    margin-top: 1.5rem;
}

.contact .map-image {
    border-radius: 0.5rem;
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #1F2937;
    color: #FFFFFF;
    padding: 1.5rem 2rem;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Media Queries for Responsive Design */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    header {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .hero .container {
        flex-direction: row;
    }

    .hero .text-content {
        width: 50%;
        text-align: left;
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .hero .image-content {
        width: 50%;
    }

    .hero .hero-image {
        width: 83.333333%;
    }

    .about-us {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .about-us .container {
        text-align: left;
    }

    .about-us-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
        align-items: start;
    }

    .about-us h2 {
        font-size: 2.25rem;
    }

    .services {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .contact .container {
        flex-direction: row;
        gap: 3rem;
    }

    .contact .image-column,
    .contact .info-column {
        width: 50%;
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
