/*
Theme Name: Repower Net Zero
Description: A professional WordPress theme for Repower Net Zero LLC, specializing in sustainable energy solutions.
Version: 1.0.0
Author: Custom Theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: #fff;
    padding: .2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 90px;
    margin-right: 15px;
    border-radius: 8px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #127f3a;
    letter-spacing: -0.5px;
}

/* Custom Logo Styling */
.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo {
    height: 90px;
    width: auto;
    max-width: 300px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.05);
}

/* Logo link styling */
.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo a:hover {
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #127f3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #E97132;
    background: #f8f9fa;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #127f3a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background-image: url('img/211213_r39536.gif');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 100px 0 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #f8f9fa;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    display: inline-block;
    background: #E97132;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: #2980b9;
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #E97132;
    color: white;
}

/* Stats Section */
.stats {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: #E97132;
    display: block;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6c757d;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #127f3a;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #E97132;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #127f3a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission Section */
.mission {
    background: #fff;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #127f3a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-content .tagline {
    font-size: 1.5rem;
    color: #E97132;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-content .sub-tagline {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Expertise Section */
.expertise {
    background: #f8f9fa;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.expertise-item h3 {
    color: #127f3a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.expertise-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: #fff;
}

.service-card {
    background: white;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-header {
    background: #127f3a;
    color: white;
    padding: 40px;
    text-align: center;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-content {
    padding: 40px;
}

.service-content h4 {
    color: #127f3a;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.service-content ul {
    margin: 15px 0;
    padding-left: 0;
}

.service-content li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.service-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E97132;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Waste Categories */
.waste-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.waste-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #E97132;
    transition: all 0.3s ease;
}

.waste-category:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.waste-category h5 {
    color: #127f3a;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Benefits Table */
.benefits-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefits-table th,
.benefits-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.benefits-table th {
    background: #127f3a;
    color: white;
    font-weight: 600;
}

.benefits-table tr:hover {
    background: #f8f9fa;
}

.benefits-table td {
    color: #555;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    counter-reset: step-counter;
}

.process-step {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E97132;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-step h5 {
    color: #127f3a;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
}

/* Pilot Deployments */
.pilot-deployments {
    background: #f8f9fa;
}

.pilot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.pilot-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.pilot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.pilot-card h4 {
    color: #127f3a;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pilot-card ul {
    padding-left: 0;
}

.pilot-card li {
    margin-bottom: 12px;
    color: #555;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.pilot-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E97132;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    background: #fff;
}

.tech-intro {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    border: 1px solid #e9ecef;
}

.tech-intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.tech-intro ul {
    padding-left: 0;
}

.tech-intro li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style: none;
    color: #555;
}

.tech-intro li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E97132;
    font-weight: bold;
    font-size: 1.2rem;
}

.tech-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tech-advantage {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tech-advantage:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tech-advantage h4 {
    color: #127f3a;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.tech-advantage p {
    line-height: 1.6;
    color: #6c757d;
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 80px 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    width: 100%;
    max-width: 800px;
}

.contact-card {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    text-align: center;
}

.contact-card h3 {
    color: #127f3a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h4 {
    color: #E97132;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: #127f3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #E97132;
    text-decoration: underline;
}

.contact-details strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .content-text {
    order: 2;
}

.content-with-image.reverse .content-image {
    order: 1;
}

.content-text {
    padding-right: 20px;
}

.content-with-image.reverse .content-text {
    padding-right: 0;
    padding-left: 20px;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.content-text h4 {
    color: #127f3a;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.content-text ul {
    margin: 15px 0;
    padding-left: 0;
}

.content-text li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.content-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E97132;
    font-weight: bold;
    font-size: 1.2rem;
}

/* SAF Process Flow */
.saf-process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.saf-process-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    border: 2px solid #e9ecef;
}

.saf-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #127f3a;
}

.saf-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #127f3a, #0f6b32);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(18, 127, 58, 0.3);
}

.saf-step-content h5 {
    color: #127f3a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0 12px 0;
    line-height: 1.3;
}

.saf-step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.saf-process-arrow {
    font-size: 2rem;
    color: #E97132;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Landfill Process Flow */
.landfill-process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.landfill-process-container .landfill-process-step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.landfill-process-container .landfill-process-step:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}

.landfill-process-container .landfill-process-step:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.landfill-process-container .landfill-process-step:nth-child(7) {
    grid-column: 2;
    grid-row: 2;
}

.landfill-process-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    border: 2px solid #e9ecef;
}

.landfill-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #127f3a;
}

.process-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landfill-process-step:hover .process-image img {
    transform: scale(1.05);
}

.landfill-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E97132, #d85a1f);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(233, 113, 50, 0.3);
}

.landfill-step-content h5 {
    color: #127f3a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 8px 0;
    line-height: 1.3;
}

.landfill-step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.landfill-process-arrow {
    font-size: 2rem;
    color: #E97132;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    background: #127f3a;
    color: white;
    padding: 30px 0 30px 0;
}

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

.footer-section h3 {
    color: #E97132;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-bottom {
    text-align: center;
    color: #fff;
}

.serviceContent-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.serviceContent-text {
    width: 50%;
}

.serviceContent-img {
    width: 50%;
}

.serviceContent-img img {
    width: 100%;
}

span.brand {
    color: #f67a1a;
    font-weight: bold;
}

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

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
        gap: 0px;
    }

    nav ul li {
        margin: 0;
        text-align: left;
    }

    nav ul li a {
        display: block;
        padding: 5px 20px;
        margin: 5px 20px;
        border-bottom: 1px solid;
        border-radius: 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .waste-categories {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .tech-advantages {
        grid-template-columns: 1fr;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .content-with-image.reverse .content-text {
        order: 1;
        padding-left: 0;
    }

    .content-with-image.reverse .content-image {
        order: 2;
    }

    .content-text {
        padding-right: 0;
    }

    .content-image img {
        max-width: 100%;
        height: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

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

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

    .service-content {
        padding: 30px 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
	.logo img {
    height: 70px;
}
    h1, h2, h3, h4, h5, h6, p {
        line-height: normal;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-header h3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 10px;
    }

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

    .saf-process-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 45px;
        padding: 0;
        border: unset;
        background: unset;
        box-shadow: unset;
    }

    .saf-process-step {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 15px;
    }

    .landfill-process-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto auto auto;
        gap: 15px;
        padding: 0;
        background: no-repeat;
        box-shadow: unset;
        border: unset;
    }

    .content-with-image.reverse {
        grid-template-columns: 1fr;
    }

    .landfill-process-step {
        padding: 15px;
    }

    .mission-content h2 {
        font-size: 2rem;
        line-height: normal;
    }

    .mission-content .tagline {
        line-height: normal;
    }

    .mission-content .sub-tagline {
        line-height: normal;
    }

    .content-text h4 {
        margin-top: 0;
    }

    .landfill-process-container .landfill-process-step:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .landfill-process-container .landfill-process-arrow:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        transform: rotate(90deg);
    }

    .landfill-process-container .landfill-process-step:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .landfill-process-container .landfill-process-arrow:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
        transform: rotate(90deg);
    }

    .landfill-process-container .landfill-process-step:nth-child(5) {
        grid-column: 1;
        grid-row: 5;
    }

    .landfill-process-container .landfill-process-arrow:nth-child(6) {
        grid-column: 1;
        grid-row: 6;
        transform: rotate(90deg);
    }

    .landfill-process-container .landfill-process-step:nth-child(7) {
        grid-column: 1;
        grid-row: 7;
    }

    .landfill-process-step {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }

    .landfill-process-arrow {
        font-size: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}