/* About Page Styles */
:root {
    --primary-color: #284878;
    --secondary-color: #f5f5f5;
    --accent-color: #e0aa3e;
    --text-color: #333;
    --light-text: #fff;
    --dark-text: #222;
    --border-color: #e1e1e1;
    --transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-text);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
}


/* Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .tagline {
    font-size: 1.5rem;
    color: var(--dark-text);
    font-weight: 600;
    margin-top: 10px;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 15px auto;
}

/* About Section */
.about-section {
    background-color: var(--secondary-color);
    padding-top: 40px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.about-text {
    flex: 1.5;
    min-width: 300px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Factory Image */
.factory-image-container {
    margin: 30px 0 50px;
    text-align: center;
}

.factory-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Certification Section */
.certification-section {
    background-color: #fff;
    padding: 70px 0;
}

.certification-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.certification-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.certification-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certification-text {
    flex: 1.5;
    min-width: 300px;
}

.certification-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.certification-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
    position: relative;
    padding-bottom: 80px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    width: 100%;
    flex-basis: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(40, 72, 120, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-submit,
.btn-reset {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-submit:hover {
    background-color: #1e3a61;
}

.btn-reset {
    background-color: #e1e1e1;
    color: var(--dark-text);
}

.btn-reset:hover {
    background-color: #d1d1d1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header .tagline {
        font-size: 1.2rem;
    }
    
    .certification-content,
    .about-content {
        flex-direction: column;
    }
    
    .certification-image {
        order: 1;
    }
    
    .certification-text {
        order: 2;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
} 