/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #4b7b2e;
    transition: all 0.3s ease;
}

a:hover {
    color: #345821;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.paeseedang-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.paeseedang-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.paeseedang-section-title h2 {
    font-size: 2.5rem;
    color: #345821;
    margin-bottom: 15px;
    font-weight: 600;
}

.paeseedang-title-line {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, #4b7b2e, #8cc63e);
    margin: 0 auto;
}

.paeseedang-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #4b7b2e;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.paeseedang-btn:hover {
    background-color: #345821;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.paeseedang-btn img {
    height: 20px;
    width: auto;
    margin-left: 10px;
}

/* Header Styles */
.paeseedang-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.paeseedang-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.paeseedang-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.paeseedang-nav ul {
    display: flex;
}

.paeseedang-nav ul li {
    position: relative;
    margin: 0 15px;
}

.paeseedang-nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 10px 5px;
    display: block;
}

.paeseedang-nav ul li a:hover,
.paeseedang-nav ul li.active > a {
    color: #4b7b2e;
}

.paeseedang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 4px;
}

.paeseedang-nav ul li:hover > .paeseedang-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.paeseedang-dropdown li {
    margin: 0;
    width: 100%;
}

.paeseedang-dropdown li a {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.paeseedang-dropdown li:last-child a {
    border-bottom: none;
}

.paeseedang-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.paeseedang-dropdown li:hover > .paeseedang-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.paeseedang-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.paeseedang-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Breadcrumb Styles */
.paeseedang-breadcrumb {
    background-color: #f1f7eb;
    padding: 15px 0;
    margin-top: 90px;
}

.paeseedang-breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}

.paeseedang-breadcrumb ul li {
    margin-right: 10px;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.paeseedang-breadcrumb ul li:after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.paeseedang-breadcrumb ul li:last-child:after {
    display: none;
}

.paeseedang-breadcrumb ul li:last-child {
    color: #4b7b2e;
    font-weight: 500;
}

/* Hero Section Styles */
.paeseedang-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.paeseedang-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paeseedang-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.paeseedang-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.paeseedang-hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.paeseedang-hero-content p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.paeseedang-main {
    padding: 70px 0;
    overflow: hidden;
}

/* Community Philosophy Section */
.paeseedang-community-philosophy {
    margin-bottom: 80px;
}

.paeseedang-philosophy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.paeseedang-philosophy-text {
    order: 1;
}

.paeseedang-philosophy-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.paeseedang-philosophy-text p:last-child {
    margin-bottom: 0;
}

.paeseedang-philosophy-content img {
    order: 2;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Farmer Support Section */
.paeseedang-farmer-support {
    margin-bottom: 80px;
    background-color: #f7f9f2;
    padding: 60px 0;
    border-radius: 8px;
}

.paeseedang-support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.paeseedang-support-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.paeseedang-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.paeseedang-support-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.paeseedang-support-card h3 {
    font-size: 1.3rem;
    color: #345821;
    padding: 20px 20px 10px;
    font-weight: 600;
}

.paeseedang-support-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 1rem;
}

/* Education Support Section */
.paeseedang-education-support {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.paeseedang-education-content {
    text-align: left;
}

.paeseedang-education-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}

.paeseedang-education-list {
    margin-top: 30px;
}

.paeseedang-education-list li {
    margin-bottom: 20px;
    border-left: 3px solid #4b7b2e;
    padding-left: 20px;
}

.paeseedang-education-list li:last-child {
    margin-bottom: 0;
}

.paeseedang-education-list h4 {
    font-size: 1.2rem;
    color: #345821;
    margin-bottom: 5px;
    font-weight: 600;
}

.paeseedang-education-list p {
    margin-bottom: 0;
    color: #666;
}

.paeseedang-education-support img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Community Development Section */
.paeseedang-community-development {
    margin-bottom: 80px;
    background-color: #f7f9f2;
    padding: 60px 0;
    border-radius: 8px;
}

.paeseedang-development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.paeseedang-development-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 240px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.paeseedang-development-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.paeseedang-development-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.paeseedang-development-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.paeseedang-development-item:hover .paeseedang-development-overlay {
    transform: translateY(0);
}

.paeseedang-development-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.paeseedang-development-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 0;
}

.paeseedang-development-item:hover .paeseedang-development-overlay p {
    max-height: 200px;
    margin-top: 8px;
}

/* Employee Volunteer Section */
.paeseedang-employee-volunteer {
    margin-bottom: 80px;
}

.paeseedang-volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    background-color: #f7f9f2;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.paeseedang-volunteer-content img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.paeseedang-volunteer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.paeseedang-volunteer-text h2 {
    font-size: 2rem;
    color: #345821;
    margin-bottom: 20px;
}

.paeseedang-volunteer-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #444;
}

.paeseedang-volunteer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.paeseedang-stat {
    text-align: center;
}

.paeseedang-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #4b7b2e;
    margin-bottom: 5px;
}

.paeseedang-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Impact Report Section */
.paeseedang-impact-report {
    margin-bottom: 60px;
}

.paeseedang-impact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.paeseedang-impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.paeseedang-metric-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.paeseedang-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.paeseedang-metric-card img {
    height: 50px;
    margin-bottom: 15px;
}

.paeseedang-metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b7b2e;
    margin-bottom: 10px;
    line-height: 1;
}

.paeseedang-metric-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* Back Link */
.paeseedang-back-link {
    text-align: center;
    margin-top: 60px;
}

.paeseedang-back-link .paeseedang-btn img {
    margin-right: 10px;
    margin-left: 0;
}

.paeseedang-back-link .paeseedang-btn span {
    display: inline-block;
}

/* Footer Styles */
.paeseedang-footer {
    background-color: #345821;
    color: #fff;
    padding: 70px 0 20px;
}

.paeseedang-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.paeseedang-footer-col {
    margin-bottom: 30px;
}

.paeseedang-footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.paeseedang-footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #8cc63e;
}

.paeseedang-footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.paeseedang-footer-col ul li {
    margin-bottom: 10px;
}

.paeseedang-footer-col ul li a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.paeseedang-footer-col ul li a:hover {
    opacity: 1;
    color: #8cc63e;
}

.paeseedang-footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paeseedang-footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .paeseedang-philosophy-content,
    .paeseedang-education-support,
    .paeseedang-volunteer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .paeseedang-philosophy-content img,
    .paeseedang-education-support img,
    .paeseedang-volunteer-content img {
        max-height: 300px;
        width: 100%;
    }
    
    .paeseedang-support-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .paeseedang-development-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .paeseedang-volunteer-content {
        padding: 30px;
    }
    
    .paeseedang-hero-content h1 {
        font-size: 2.8rem;
    }

    .paeseedang-philosophy-text,
    .paeseedang-philosophy-content img {
        order: 0;
    }
}

@media screen and (max-width: 768px) {
    .paeseedang-nav {
        display: none;
    }
    
    .paeseedang-mobile-menu-toggle {
        display: flex;
    }
    
    .paeseedang-metric-card {
        padding: 20px 15px;
    }
    
    .paeseedang-footer-col {
        text-align: center;
    }
    
    .paeseedang-volunteer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .paeseedang-stat {
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .paeseedang-hero-content h1 {
        font-size: 2.4rem;
    }
    
    .paeseedang-hero-content p {
        font-size: 1rem;
    }
    
    .paeseedang-section-title h2,
    .paeseedang-volunteer-text h2 {
        font-size: 2rem;
    }
    
    .paeseedang-footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .paeseedang-development-item {
        height: 200px;
    }
    
    .paeseedang-metric-number {
        font-size: 2.2rem;
    }
    
    .paeseedang-support-card img,
    .paeseedang-development-item {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .paeseedang-hero {
        height: 350px;
    }
    
    .paeseedang-hero-content h1 {
        font-size: 2rem;
    }
    
    .paeseedang-hero-content p {
        font-size: 0.95rem;
    }
    
    .paeseedang-section-title h2,
    .paeseedang-volunteer-text h2 {
        font-size: 1.8rem;
    }
    
    .paeseedang-stat-number {
        font-size: 1.8rem;
    }
    
    .paeseedang-metric-number {
        font-size: 2rem;
    }
    
    .paeseedang-development-item {
        height: 160px;
    }
    
    .paeseedang-development-overlay h3 {
        font-size: 1.1rem;
    }
    
    .paeseedang-development-overlay p {
        font-size: 0.9rem;
    }
    
    .paeseedang-impact-intro {
        font-size: 1rem;
    }
    
    .paeseedang-main {
        padding: 50px 0;
    }
    
    .paeseedang-community-philosophy,
    .paeseedang-farmer-support,
    .paeseedang-education-support,
    .paeseedang-community-development,
    .paeseedang-employee-volunteer,
    .paeseedang-impact-report {
        margin-bottom: 50px;
    }
} 