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

:root {
    --primary-color: #2872AF;
    --primary-dark: #1a4b7a;
    --primary-light: #e8f0f8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-gray: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #22c55e;
    --error-color: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
    padding: 30px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
  height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.cta-phone {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    background-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4f8 100%);
    padding: 80px 20px;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(40, 114, 175, 0.15);
}

.about-hero {
    padding: 100px 20px;
    text-align: center;
}

.about-hero .container {
    flex-direction: column;
}

.about-hero .hero-content {
    animation: none;
}

.contact-hero {
    padding: 100px 20px;
    text-align: center;
}

.contact-hero .container {
    flex-direction: column;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 114, 175, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1em;
}

/* Sections */
.section {
    padding: 80px 20px;
    animation: fadeIn 0.6s ease-out;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-intro {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
}

/* Value Section */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: scaleUp 0.6s ease-out;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-card h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4f8 100%);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.highlight-box p {
    font-size: 1.1em;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Sources Grid */
.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.source-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.source-card:hover {
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
    transform: translateY(-5px);
}

.source-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 50px;
    text-align: center;
}

.source-card h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.source-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.tool-list {
    list-style: none;
    padding-left: 0;
}

.tool-list li {
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.tool-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-section .btn {
    display: inline-block;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.type-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.type-item:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.type-icon {
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: bold;
}

.type-item p {
    color: var(--text-dark);
    font-weight: 500;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* Evaluation Section */
.evaluation-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.eval-text {
    flex: 1;
    animation: slideInLeft 0.6s ease-out;
}

.eval-text h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.eval-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.eval-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.eval-list li {
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.eval-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.eval-image {
    flex: 1;
    animation: slideInRight 0.6s ease-out;
}

.eval-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(40, 114, 175, 0.15);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Sustainability Grid */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.sustainability-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sustainability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.sustainability-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.sustainability-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sustainability-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Final */
.cta-final,
.cta-final-about {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-final h2,
.cta-final-about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-final p,
.cta-final-about p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-final .btn-primary:hover {
    background-color: var(--bg-light);
}

.cta-final .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-final .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* About Intro */
.about-intro {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-text {
    flex: 1;
    animation: slideInLeft 0.6s ease-out;
}

.intro-text h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05em;
}

.intro-image {
    flex: 1;
    animation: slideInRight 0.6s ease-out;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(40, 114, 175, 0.15);
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mission-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.expertise-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.expertise-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.expertise-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
    border-top: 4px solid var(--primary-color);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.commitment-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.commitment-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.commitment-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.commitment-item p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.value-card-about {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.value-symbol {
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.value-card-about h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card-about p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.area-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.area-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.service-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 30px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}
.footer-logo-image {
  height: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-phone {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Contact Section */
.contact-section .container {
    display: flex;
    gap: 4rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    flex: 1;
    animation: fadeInUp 0.6s ease-out;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 114, 175, 0.1);
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(40, 114, 175, 0.1);
}

.info-icon {
    font-size: 2em;
    min-width: 50px;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    line-height: 1.6;
    text-decoration: none;
}

.info-content a:hover {
    color: var(--primary-color);
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    color: var(--text-light);
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.services-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Map Section */
.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(40, 114, 175, 0.15);
    margin-bottom: 30px;
    height: 450px;
}

.map-note {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Reasons */
.contact-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.reason-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.15);
}

.reason-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero .container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5em;
    }

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

    .hero-buttons {
        flex-direction: column;
    }
 .logo-image {
    width: 300px;
    height: 60px;
    }
    .section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 2em;
    }

    .value-grid,
    .sources-grid,
    .benefits-grid,
    .sustainability-grid,
    .mission-grid,
    .expertise-grid,
    .why-choose-grid,
    .commitment-grid,
    .values-grid,
    .contact-reasons {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .evaluation-section .container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-section .container {
        flex-direction: column;
        gap: 2rem;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-final,
    .cta-final-about {
        padding: 60px 20px;
    }

    .cta-final h2,
    .cta-final-about h2 {
        font-size: 1.8em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

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

    .section-title {
        font-size: 1.6em;
    }

    .value-card,
    .source-card,
    .process-step,
    .why-card {
        padding: 20px;
    }

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

    .nav-menu {
        top: 70px;
    }

    .cta-buttons {
        gap: 10px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-buttons {
        display: none;
    }
}