/* Barsan-inspired Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    padding: 12px 25px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles - Barsan Inspired */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 15px;
    text-transform: uppercase;
}

nav ul li a:hover, nav ul li a.active {
    color: #0056b3;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0056b3;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

/* Hero Section - Barsan Style */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Services Section - Barsan Style */
.services {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #0056b3;
    font-size: 2.4rem;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #0056b3;
}

.service-card h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.read-more {
    color: #0056b3;
    font-weight: 600;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.read-more:hover:after {
    margin-left: 10px;
}

/* Offices Section - Barsan Style */
.offices {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}

.offices h2 {
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 2.4rem;
    font-weight: 700;
}

.offices p {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    padding: 30px;
    margin: 15px;
    min-width: 220px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.8rem;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #555;
}

/* Technology Section - Barsan Style */
.technology {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.technology h2 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 2.4rem;
    font-weight: 700;
}

.technology h3 {
    margin-bottom: 40px;
    font-weight: 400;
    color: #555;
    font-size: 1.3rem;
}

.technology p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* History Section - Barsan Style */
.history {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.history h2 {
    color: #0056b3;
    margin-bottom: 30px;
    font-size: 2.4rem;
    font-weight: 700;
}

.history p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Green Logistics Section - Barsan Style */
.green-logistics {
    padding: 100px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.green-logistics h2 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 2.4rem;
    font-weight: 700;
}

.green-logistics h3 {
    margin-bottom: 40px;
    font-weight: 400;
    color: #555;
    font-size: 1.3rem;
}

.green-logistics p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Footer - Barsan Style */
footer {
    background-color: #0056b3;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-contact h3, .footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3:after, .footer-links h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #fff;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ccc;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Page Styles - Barsan Inspired */
.company-section {
    padding: 140px 0 80px;
}

.company-section h1 {
    color: #0056b3;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.value-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #0056b3;
}

.value-card i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 25px;
}

.value-card h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Services Page Styles - Barsan Inspired */
.service-detail {
    padding: 140px 0 80px;
}

.service-detail h1 {
    color: #0056b3;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}

.service-item {
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-text h2 {
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
}

.service-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    margin-top: 30px;
}

.service-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #555;
    line-height: 1.6;
}

.service-features li:before {
    content: '✓';
    color: #0056b3;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Technology Page Styles - Barsan Inspired */
.tech-section {
    padding: 140px 0 80px;
}

.tech-section h1 {
    color: #0056b3;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}

.tech-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.tech-intro p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tech-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #0056b3;
}

.tech-card i {
    font-size: 3.5rem;
    color: #0056b3;
    margin-bottom: 25px;
}

.tech-card h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.tech-card p {
    color: #555;
    line-height: 1.7;
}

/* Contact Page Styles - Barsan Inspired */
.contact-section {
    padding: 140px 0 80px;
}

.contact-section h1 {
    color: #0056b3;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.contact-intro p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #0056b3;
    color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2, .contact-info h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #0056b3;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    margin-right: 15px;
    font-size: 1.5rem;
    min-width: 25px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.6;
}

/* Company Page Styles */

/* Page Title Section */
.page-title-section {
    padding: 150px 0 80px;
    text-align: center;
    background-color: #f5f5f5;
    position: relative;
}

.company-title-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-title-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-title-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Company Story Section */
.company-story-section {
    padding: 80px 0;
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.section-title {
    color: #0056b3;
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #0056b3;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.quote {
    border-left: 4px solid #0056b3;
    padding: 20px 0 20px 25px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-style: normal;
}

/* Mission Vision Values */
.alternate-bg {
    background-color: #f9f9f9;
}

.mission-vision-values-alt {
    padding: 80px 0;
}

.mvv-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-10px);
}

.mvv-item.wide {
    grid-column: span 2;
}

.mvv-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.mvv-text h4 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.values-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

/* Milestones Timeline */
.milestones-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.milestones-timeline {
    position: relative;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #0056b3;
    transform: translateX(-50%);
}

.milestone-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.milestone-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.milestone-item:nth-child(odd) {
    flex-direction: row-reverse;
    padding-left: 50%;
    padding-right: 30px;
}

.milestone-item:nth-child(even) {
    padding-right: 50%;
    padding-left: 30px;
}

.milestone-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
    flex: 0 0 80px;
}

.milestone-icon {
    width: 60px;
    height: 60px;
    background-color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(0, 86, 179, 0.2);
}

.milestone-desc {
    flex: 1;
    padding: 0 20px;
}

/* Sustainability Section */
.sustainability-focus-section {
    padding: 80px 0;
}

.sustainability-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.sustainability-text {
    flex: 1;
    min-width: 300px;
}

.sustainability-image {
    flex: 1;
    min-width: 300px;
}

.sustainability-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sustainability-pillars {
    margin: 30px 0;
}

.sustainability-pillars li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.sustainability-pillars li i {
    color: #0056b3;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Global Presence Map */
.global-presence-map-section {
    padding: 80px 0;
    text-align: center;
}

.interactive-map-placeholder {
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
}

.interactive-map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

.network-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.network-highlights span {
    background-color: #f0f0f0;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #0056b3;
    display: flex;
    align-items: center;
}

.network-highlights span i {
    margin-right: 10px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: #0056b3;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.member-title {
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Careers Section */
.careers-cta-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.careers-cta-section .section-title,
.careers-cta-section .section-subtitle {
    color: #fff;
}

.careers-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0;
}

.careers-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content, .service-item, .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image {
        order: -1;
    }
    
    .service-item:nth-child(even) .service-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services h2, .offices h2, .technology h2, .history h2, .green-logistics h2 {
        font-size: 2rem;
    }
}