/* About Page Styles */

/* Breadcrumb Section */
.about-breadcrumb-section {
    background-color: #53834F;
    padding: 15px 20px;
}

.about-breadcrumb-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-breadcrumbs {
    font-size: 14px;
    color: white;
}

/* Hero Section */
.about-hero-section {
    background: #53834f;
    padding: 4rem 0 8rem;
    position: relative;
    width: 100%;
}

.about-hero-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Content */
.about-hero-content {
    text-align: center;
}

.about-hero-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1.5rem 0;
    letter-spacing: 12.8px;
    line-height: 1.2;
}

.about-hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.about-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e6ae25;
}

/* Content Section */
.about-content-section {
    background: #f5f5f5;
    padding: 4rem 0 6rem;
    min-height: 60vh;
}

.about-content-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title */
.about-section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: white;
    background: #42210b;
    display: inline-block;
    padding: 1rem 4rem;
    border-radius: 8px;
    margin: 0;
    letter-spacing: 3.6px;
}

/* Content Text */
.about-content-text {
    margin-bottom: 4rem;
}

.about-content-text p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    color: #42210b;
    line-height: 2;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.05em;
}

/* Buttons */
.about-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-button {
    display: block;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    letter-spacing: 2.9px;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.about-button-primary {
    background: #e6ae25;
    color: white;
}

.about-button-primary:hover {
    background: #d49a1f;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-breadcrumb-section {
        padding: 12px 15px;
    }

    .about-breadcrumb-container {
        padding: 0 1rem;
    }

    .about-hero-section {
        padding: 3rem 0 4rem;
    }
    
    .about-hero-title {
        font-size: 24px;
        letter-spacing: 7px;
    }
    
    .about-dot {
        width: 12px;
        height: 12px;
    }
    
    .about-content-section {
        padding: 3rem 0 4rem;
    }
    
    .about-section-title {
        font-size: 24px;
        padding: 0.8rem 2rem;
        letter-spacing: 2px;
    }
    
    .about-content-text p {
        font-size: 16px;
    }
    
    .about-button {
        min-width: 100%;
        font-size: 18px;
        padding: 1rem 2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 20px;
        letter-spacing: 5px;
    }
    
    .about-section-title {
        font-size: 20px;
        padding: 0.6rem 1.5rem;
    }
    
    .about-content-text p {
        font-size: 14px;
    }
    
    .about-button {
        font-size: 16px;
        padding: 0.8rem 1.5rem;
    }
}

