* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.logo a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-weight: 700;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
    background: linear-gradient(135deg, #1e4220 0%, #2c5f2d 100%);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5f2d;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: #fff;
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.label-badge {
    font-size: 5em;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    flex-shrink: 0;
}

.label-logo {
    width: 160px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-content h1:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1em;
    opacity: 0.9;
}

.hero-small {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-small .hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-small .hero-content h1 {
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-small .hero-content p {
    font-size: 1.3em;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 3em;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.3em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.two-column h3 {
    font-size: 2em;
    color: #2c5f2d;
    margin-bottom: 25px;
    font-weight: 700;
}

.two-column p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #444;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 400px;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .section-image {
    transform: scale(1.05);
}

/* Label Visual */
.label-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-logo-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.2);
    text-align: center;
    border: 4px solid #2c5f2d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.label-logo-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.label-logo-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(44, 95, 45, 0.3);
}

.lable-logo {
    padding: 5px;
  width: 150px;
}

.label-logo-preview h3,
.label-logo-preview p,
.label-logo-preview .label-icon {
    position: relative;
    z-index: 1;
}

.label-icon {
    font-size: 5em;
    margin-bottom: 20px;
}

.label-logo-preview h3 {
    font-size: 2.5em;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.label-logo-preview p {
    color: #666;
    font-size: 1.1em;
}

/* Info Sections */
.info-section {
    margin-bottom: 40px;
    padding: 45px;
    background: linear-gradient(to right, #ffffff 0%, #fafafa 100%);
    border-left: 6px solid #2c5f2d;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-section h3 {
    color: #2c5f2d;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.info-list {
    margin-left: 25px;
    margin-top: 15px;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: 45px 35px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    border-color: #2c5f2d;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.2);
}

.value-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

.value-card p {
    line-height: 1.8;
    color: #555;
}

/* Certification Steps */
.certification-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.step:hover {
    border-color: #2c5f2d;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    border: 2px solid #2c5f2d;
}

.btn:hover {
    background: #1e4220;
    border-color: #1e4220;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1em;
}

.bg-light {
    background: #f8f9fa;
}

/* Footer */
footer {
    background: #1e4220;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 1.5em;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-section strong {
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

/* Image styles */
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 95, 45, 0.15) 100%);
    pointer-events: none;
    border-radius: 15px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Additional enhancements */
.certification-steps {
    position: relative;
}

.step {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.step-number {
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

/* Large screens - prevent elements from becoming too large */
@media (min-width: 1400px) {
    section {
        max-width: 1300px;
    }

    nav {
        max-width: 1300px;
    }

    .footer-content {
        max-width: 1300px;
    }
}

@media (min-width: 1600px) {
    section {
        max-width: 1400px;
    }

    nav {
        max-width: 1400px;
    }

    .footer-content {
        max-width: 1400px;
    }

    .hero-content h1 {
        font-size: 3.2em;
    }

    .section-header h2 {
        font-size: 2.8em;
    }

    .two-column h3 {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1.4em;
    }

    .label-badge {
        font-size: 4.5em;
    }
}

@media (min-width: 1920px) {
    section {
        max-width: 1600px;
        padding: 120px 40px;
    }

    nav {
        max-width: 1600px;
        padding: 30px 40px;
    }

    .hero-content {
        max-width: 1000px;
    }

    .hero-content h1 {
        font-size: 3.8em;
    }

    .footer-content {
        max-width: 1600px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5em;
    }
    
    .logo a {
        padding: 8px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.85em;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title-container {
        gap: 15px;
        margin-bottom: 20px;
    }

    .label-logo {
        width: 100px;
    }

    .hero-content h1 {
        font-size: 2.2em;
        letter-spacing: 2px;
        padding: 18px 25px;
        border-radius: 40px;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .certification-steps {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .label-logo-preview {
        padding: 30px;
    }

    .label-logo-preview h3 {
        font-size: 2em;
    }

    .label-icon {
        font-size: 3em;
    }

    .image-container {
        height: 300px;
    }
}