* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #424242;
    overflow-x: hidden;
}

.greenworld-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
}

.greenworld-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 56px;
    height: 29px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.greenworld-company-name {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.greenworld-company-name-thai {
    font-family: 'Noto Sans Thai', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E7D32;
    line-height: 1.2;
}

.greenworld-company-name-english {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #757575;
    line-height: 1.2;
}

.greenworld-footer .greenworld-logo-section {
    margin-bottom: 1rem;
}

.greenworld-footer .company-logo {
    width: 56px;
    height: 29px;
}

.greenworld-footer .greenworld-company-name-thai {
    color: white;
    font-size: 1rem;
}

.greenworld-footer .greenworld-company-name-english {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.greenworld-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.greenworld-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
}

.greenworld-nav {
    display: flex;
    gap: 2rem;
}

.greenworld-nav-link {
    text-decoration: none;
    color: #424242;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.greenworld-nav-link:hover,
.greenworld-nav-link.greenworld-active {
    color: #2E7D32;
}

.greenworld-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

.greenworld-nav-link:hover::after,
.greenworld-nav-link.greenworld-active::after {
    width: 100%;
}

.greenworld-mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.greenworld-mobile-menu span {
    width: 25px;
    height: 3px;
    background: #424242;
    margin: 3px 0;
    transition: 0.3s;
}

.greenworld-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    padding: 1rem 8rem;
    position: relative;
    overflow: hidden;
}

.greenworld-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.greenworld-hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    color: white;
}

.greenworld-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.greenworld-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.greenworld-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.greenworld-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.greenworld-btn-primary {
    background: #FF9800;
    color: white;
}

.greenworld-btn-primary:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.greenworld-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.greenworld-btn-secondary:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-2px);
}

.greenworld-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.greenworld-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Index Page Specific Styles */

/* Services Section */
.greenworld-services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.greenworld-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.greenworld-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.greenworld-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.greenworld-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.greenworld-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.greenworld-service-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-service-desc {
    color: #757575;
    line-height: 1.6;
}

/* Advantages Section */
.greenworld-advantages-section {
    padding: 6rem 0;
    background: white;
}

.greenworld-advantages-section .greenworld-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.greenworld-advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.greenworld-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.greenworld-advantage-number {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.greenworld-advantage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #424242;
}

.greenworld-advantage-desc {
    color: #757575;
    line-height: 1.6;
}

.greenworld-advantages-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Cases Section */
.greenworld-cases-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.greenworld-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.greenworld-case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.greenworld-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.greenworld-case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.greenworld-case-content {
    padding: 2rem;
}

.greenworld-case-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-case-desc {
    color: #757575;
    line-height: 1.6;
}

/* Contact Section */
.greenworld-contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    text-align: center;
}

.greenworld-contact-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.greenworld-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.greenworld-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.greenworld-contact-item img {
    width: 20px;
    height: 20px;
}

.greenworld-footer {
    background: #424242;
    color: white;
    padding: 4rem 0 2rem;
}

.greenworld-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.greenworld-footer-desc {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.greenworld-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.greenworld-footer-link {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.greenworld-footer-link:hover {
    opacity: 1;
}

.greenworld-footer-bottom {
    border-top: 1px solid #757575;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.greenworld-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(46, 125, 50, 0.3);
    border-top: 3px solid #FF9800;
}

.greenworld-cookies-banner.show {
    transform: translateY(0);
    animation: cookiesBannerPulse 2s ease-in-out infinite;
}

@keyframes cookiesBannerPulse {

    0%,
    100% {
        box-shadow: 0 -10px 40px rgba(46, 125, 50, 0.3);
    }

    50% {
        box-shadow: 0 -15px 50px rgba(46, 125, 50, 0.5);
    }
}

.greenworld-cookies-content {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.greenworld-cookies-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.greenworld-cookies-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
}

.greenworld-cookies-btn {
    background: #FF9800;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.greenworld-cookies-btn:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.greenworld-cookies-btn:active {
    transform: translateY(0);
}

.greenworld-cookies-link {
    color: #FFEB3B;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
}

/* 添加Cookies弹框的额外视觉效果 */
.greenworld-cookies-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9800, #FFEB3B, #FF9800);
    animation: cookiesBannerShine 3s ease-in-out infinite;
}

@keyframes cookiesBannerShine {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.greenworld-cookies-btn {
    position: relative;
    overflow: hidden;
}

.greenworld-cookies-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.greenworld-cookies-btn:hover::before {
    left: 100%;
}

.greenworld-cookies-link:hover {
    background: rgba(255, 235, 59, 0.2);
    color: #FFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 235, 59, 0.2);
}

.greenworld-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-weight: 500;
    max-width: 400px;
    text-align: center;
}

.greenworld-notification-show {
    transform: translateX(0);
}

.greenworld-notification-success {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.greenworld-notification-error {
    background: linear-gradient(135deg, #F44336 0%, #D32F2F 100%);
}

.greenworld-notification-info {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

@media (max-width: 1024px) {
    .greenworld-hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .greenworld-hero-title {
        font-size: 2.5rem;
    }

    .greenworld-advantages-section .greenworld-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .greenworld-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .greenworld-nav {
        display: none;
    }

    .greenworld-mobile-menu {
        display: flex;
    }

    .greenworld-company-name {
        display: none;
    }

    .greenworld-logo-section {
        gap: 0.5rem;
    }

    .company-logo {
        width: 56px;
        height: 29px;
    }

    .greenworld-hero-title {
        font-size: 2rem;
    }

    .greenworld-hero-subtitle {
        font-size: 1rem;
    }

    .greenworld-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .greenworld-services-grid {
        grid-template-columns: 1fr;
    }

    .greenworld-cases-grid {
        grid-template-columns: 1fr;
    }

    .greenworld-cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .greenworld-cookies-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .greenworld-cookies-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .greenworld-cookies-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .greenworld-cookies-link {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .greenworld-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .greenworld-hero {
        padding: 6rem 1rem 3rem;
    }

    .greenworld-hero-title {
        font-size: 1.8rem;
    }

    .greenworld-section-title {
        font-size: 2rem;
    }

    .greenworld-service-card {
        padding: 2rem;
    }

    .greenworld-advantage-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Team Page Styles */
.greenworld-team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-team-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.greenworld-team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.greenworld-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.greenworld-team-position {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-team-description {
    color: #666;
    line-height: 1.6;
}

.greenworld-certifications-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-certification-card {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-certification-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.greenworld-culture-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-culture-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-culture-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* History Page Styles */
.greenworld-timeline-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.greenworld-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4CAF50, #2E7D32);
    transform: translateX(-50%);
}

.greenworld-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.greenworld-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.greenworld-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.greenworld-timeline-year {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.greenworld-timeline-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
}

.greenworld-timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 1rem solid transparent;
    transform: translateY(-50%);
}

.greenworld-timeline-item:nth-child(odd) .greenworld-timeline-content::before {
    right: 100%;
    border-right-color: white;
}

.greenworld-timeline-item:nth-child(even) .greenworld-timeline-content::before {
    left: 100%;
    border-left-color: white;
}

.greenworld-timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.greenworld-growth-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-growth-card {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-growth-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #FF9800;
}

.greenworld-tech-milestones-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-tech-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-awards-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-award-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.greenworld-award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.greenworld-award-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.greenworld-future-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.greenworld-future-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Publishing Page Styles */
.greenworld-publishing-services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-publishing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-publishing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-publishing-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-publishing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-published-works-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-work-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.greenworld-work-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-work-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF9800;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.greenworld-publishing-process-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.greenworld-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-process-number {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.greenworld-process-content {
    flex: 1;
}

.greenworld-process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-left: 2rem;
    flex-shrink: 0;
}

.greenworld-copyright-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-copyright-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-copyright-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-copyright-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-quality-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-quality-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Information Services Page Styles */
.greenworld-info-services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-info-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-tech-architecture-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-architecture-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-architecture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-solutions-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-solution-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-solution-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-solution-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-case-studies-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-case-study-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-case-study-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-case-study-industry {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-case-study-results {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.greenworld-advantages-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-advantage-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-advantage-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Industry News Page Styles */
.greenworld-industry-trends-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-trend-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-trend-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-trend-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-trend-date {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-tech-development-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-tech-development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-tech-dev-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-tech-dev-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-tech-dev-details {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.greenworld-market-research-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-market-research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-market-research-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-market-research-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-research-date {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.greenworld-stat {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.greenworld-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
}

.greenworld-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

.greenworld-expert-insights-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-expert-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-expert-insight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.greenworld-expert-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.greenworld-expert-title {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-expert-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.greenworld-industry-events-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-event-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    text-align: center;
}

.greenworld-event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.greenworld-event-date {
    color: #FF9800;
    font-weight: bold;
    margin: 0.5rem 0;
}

.greenworld-event-location {
    color: #666;
    margin: 0.5rem 0;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {

    .greenworld-team-grid,
    .greenworld-certifications-grid,
    .greenworld-culture-grid,
    .greenworld-growth-grid,
    .greenworld-tech-grid,
    .greenworld-awards-grid,
    .greenworld-publishing-grid,
    .greenworld-works-grid,
    .greenworld-info-grid,
    .greenworld-architecture-grid,
    .greenworld-solutions-grid,
    .greenworld-case-studies-grid,
    .greenworld-advantages-grid,
    .greenworld-trends-grid,
    .greenworld-tech-development-grid,
    .greenworld-market-research-grid,
    .greenworld-expert-insights-grid,
    .greenworld-events-grid {
        grid-template-columns: 1fr;
    }

    .greenworld-timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .greenworld-timeline::before {
        display: none;
    }

    .greenworld-timeline-content {
        margin: 1rem 0;
    }

    .greenworld-timeline-content::before {
        display: none;
    }

    .greenworld-process-step {
        flex-direction: column;
        text-align: center;
    }

    .greenworld-process-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .greenworld-process-icon {
        margin-left: 0;
        margin-top: 1rem;
    }

    .greenworld-future-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .greenworld-market-stats {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.greenworld-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.greenworld-contact-form .greenworld-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.greenworld-contact-form label {
    font-weight: 600;
    color: #424242;
    font-size: 1rem;
}

.greenworld-contact-form input,
.greenworld-contact-form textarea,
.greenworld-contact-form select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.greenworld-contact-form input:focus,
.greenworld-contact-form textarea:focus,
.greenworld-contact-form select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.greenworld-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.greenworld-contact-form .greenworld-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.greenworld-contact-form .greenworld-submit-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.greenworld-contact-form .greenworld-submit-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(46, 125, 50, 0.3);
}

.greenworld-contact-form .greenworld-submit-btn:active {
    transform: translateY(0);
}

/* Contact Form Section Styles */
.greenworld-contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Responsive Contact Form Styles */
@media (max-width: 768px) {
    .greenworld-contact-form .greenworld-form-row {
        grid-template-columns: 1fr;
    }

    .greenworld-contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Contact Form Styles */
.greenworld-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.greenworld-contact-form .greenworld-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.greenworld-contact-form label {
    font-weight: 600;
    color: #424242;
    font-size: 1rem;
}

.greenworld-contact-form input,
.greenworld-contact-form textarea,
.greenworld-contact-form select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.greenworld-contact-form input:focus,
.greenworld-contact-form textarea:focus,
.greenworld-contact-form select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.greenworld-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.greenworld-contact-form .greenworld-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.greenworld-contact-form .greenworld-submit-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.greenworld-contact-form .greenworld-submit-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(46, 125, 50, 0.3);
}

.greenworld-contact-form .greenworld-submit-btn:active {
    transform: translateY(0);
}

/* Contact Form Section Styles */
.greenworld-contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Responsive Contact Form Styles */
@media (max-width: 768px) {
    .greenworld-contact-form .greenworld-form-row {
        grid-template-columns: 1fr;
    }

    .greenworld-contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Responsive Newsletter Styles */