
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Verdana', 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }
       .logo img {
        width: 180px;
      }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: 25px;
            overflow: hidden;
            margin-left: 2rem;
        }

        .language-switcher button {
            background: none;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            color: white;
        }

        .language-switcher button.active {
            background: #2e66c7;
            color: white;
        }

        .language-switcher button:hover {
            background: rgba(255,255,255,0.2);
        }

        .language-switcher button.active:hover {
            background: #0097a7;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 0.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-left {
            display: flex;
            align-items: center;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2e66c7;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #2e66c7;
        }

        .cta-button {
            background: #2e66c7;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #0097a7;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 31, 69, 0.57), rgba(18, 47, 98, 0.8)), url('/img/ST_727266622-2-scaled.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #2e66c7;
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #0097a7;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: #1e3c72;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2e66c7;
            margin-bottom: 1rem;
        }

        .section-title .subtitle {
            font-size: 1.1rem;
            color: #2e66c7;
            font-weight: bold;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .about-text h3 {
            color: #2e66c7;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            color: #666;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00bcd400, #037cfb30);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .feature-card h4 {
            color: #2e66c7;
            margin-bottom: 1rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: white;
        }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  color: white;
  padding: 2rem;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(#0e2d8970, rgb(16, 48, 105));
            z-index: 1;
        }

        .service-card-1 {
            background-image: url('/img/AdobeStock_384705907.webp');
        }

        .service-card-2 {
            background-image: url('/img/scale_1200.webp');
        }

        .service-card-3 {
            background-image: url('/img/other-cargo-services-1.webp');
        }

        .service-card-4 {
            background-image: url('/img/GettyImages-1256233795.webp');
        }

        .service-card-5 {
            background-image: url('/img/443611_diller0054.webp');
        }

        .service-card-6 {
            background-image: url('/img/3ca959a1-39d0-44ee-90a1-1884f1042f0b.webp');
        }

        .service-card > * {
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card p {
            opacity: 0.9;
            line-height: 1.6;
        }


        /* Locations Section */
        .locations {
            padding: 5rem 0;
            background: white;
        }

        .locations-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 2rem;
            margin-top: 3rem;
        }

        .location-card {
            background: #f8f9fa;
            padding: 0;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-5px);
        }

        .location-header {
            position: relative;
            height: 450px;
            overflow: hidden;
        }

        .location-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .location-card:hover .location-header img {
            transform: scale(1.1);
        }

        .location-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(30, 60, 114), rgba(42, 82, 152, 0.5));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-overlay h4 {
            color: white;
            font-size: 1.4rem;
            text-align: center;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .location-content {
            padding: 2rem;
        }

        .location-content ul {
            list-style: none;
            margin: 0;
        }

        .location-content li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #ddd;
            color: #666;
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

.location-content li {
    padding-left: 37px; /* увеличиваем отступ: 22px (ширина иконки) + 15px (дополнительный отступ) */
}

.location-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 22px;
    height: 22px;
    background-image: url("/img/pin-round-svgrepo-com.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

        .location-content li:last-child {
            border-bottom: none;
        }

        /* Contact Form Section */
        .contact-form {
            padding: 5rem 0;
            background: linear-gradient(rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9)), 
                        url('/img/ST_727266622-2-scaled.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }

        .contact-form h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .contact-form p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Verdana', 'Arial', sans-serif;
            background: white;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
            transform: translateY(-2px);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            background: #2e66c7;
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            font-family: 'Verdana', 'Arial', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-submit:hover {
            background: #0097a7;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .form-submit:active {
            transform: translateY(-1px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #2e66c7;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 1rem;
            text-align: center;
            color: #999;
        }

        /* Hidden class for language switching */
        .hidden {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.section-title h2{
  font-size: 1.7rem;

}
.service-card h3 {
  font-size: 1.1rem;
}
		
		.logo img {
  width: 125px;
}
            .language-switcher {
                margin-left: 1rem;
            }

            .nav-right {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                display: none;
            }
.hero {
  padding-top: 50px;
  height: 879px;
}
            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .language-switcher {
                top: 70px;
                right: 10px;
            }
					.form-row {
                grid-template-columns: 1fr;
            }

            .contact-form h2 {
                font-size: 2rem;
            }

            .contact-form p {
                font-size: 1rem;
                padding: 0 1rem;
            }           
			.locations-content {
                grid-template-columns: 1fr !important;
                gap: 2rem;
            }

            .location-header h4 {
                font-size: 1.1rem;
            }
			
			.services-grid {
  grid-template-columns: repeat(1, 1fr);

}
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

