:root {
    --primary-blue: #17365b;
    --secondary-gray: #E5E8ED;
    --accent-gold: #D4AF37;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}
.logo {
height: 50px; 
width: auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Override the generic btn styles for contact-btn */
.header-right .contact-btn {
    margin-right: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:hover {
    background-color: #0F2845;
    transform: translateY(-2px);
}

.logo-link {
    display: flex;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #FFFFFF;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    height: 60px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
    
}

.logo-placeholder {
    background-color: var(--primary-blue);
  gap:10px;
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 4px;
}

.logo-placeholder img {

    width: 60px; 
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-blue);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
}

.header-right {
    display: flex;
    align-items: center;
}

.lang-selector {
    margin-right: 20px;
    position: relative;
}

.lang-selector select {
    appearance: none;
    background: transparent;
    border: 1px solid var(--secondary-gray);
    padding: 5px 25px 5px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.lang-selector::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
}

.contact-btn {
    display: inline-block;
    min-width: 150px;
    padding: 15px 25px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background-color: #0F2845;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: var(--transition);
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-blue);
}

.mobile-nav-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 20px;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary-gray);
    transition: var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--primary-blue);
}

.mobile-nav-bottom {
    margin-top: 30px;
}

.mobile-lang-selector {
    margin-bottom: 20px;
}

.mobile-lang-selector select {
    width: 100%;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid var(--secondary-gray);
    border-radius: 4px;
}

.mobile-contact-btn {
    width: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.455), rgba(0, 0, 0, 0.455)), url('./img/index.jpeg') center/cover no-repeat;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-commodities {

    background: linear-gradient(to top, rgba(0, 0, 0, 0.450), rgba(0, 0, 0, 0.450)), url('./img/commodities.jpg') center/cover no-repeat;
 
}

.hero-fx {

    background: linear-gradient(to top, rgba(0, 0, 0, 0.450), rgba(0, 0, 0, 0.450)), url('./img/FX.jpg') center/cover no-repeat;
   
}

.hero-mna {

    background: linear-gradient(to top, rgba(0, 0, 0, 0.450), rgba(0, 0, 0, 0.450)), url('./img/mna.jpg') center/cover no-repeat;

}

.hero-it {

    background: linear-gradient(to top, rgba(0, 0, 0, 0.450), rgba(0, 0, 0, 0.450)), url('./img/it.jpg') center/cover no-repeat;
  
}

.hero-contact {

    background: linear-gradient(to top, rgba(0, 0, 0, 0.300), rgba(0, 0, 0, 0.350)), url('./img/contact.jpg') center/cover no-repeat;
   
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,10 L90,10 L90,90 L10,90 Z' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3Cpath d='M30,10 L30,90 M50,10 L50,90 M70,10 L70,90 M10,30 L90,30 M10,50 L90,50 M10,70 L90,70' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3C/svg%3E"); */
    opacity: 0.5;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.highlight {
    color: var(--accent-gold);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--secondary-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-size: 3rem;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.service-content p {
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--secondary-gray);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* Careers Section */
.careers {
    padding: 6rem 0;
    background-color: var(--secondary-gray);
    text-align: center;
}

.careers p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--secondary-gray);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {

    margin-bottom: 0px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-map {
    margin-top: 2rem;
    /* height: 300px; */
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 3rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-about p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links h3 {
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
    margin-top: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact .contact-info-item {
    color: var(--text-light);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        height: 60px;
    }

    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-right .lang-selector {
        display: none;
    }

    .header-right .contact-btn {
        display: none;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .logo {
        height: 30px;
    }
}

/* Market Approach Section */
.market-approach {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.approach-text {
    flex: 1;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section - Новые элементы в карточках услуг */
.key-points {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.key-points li {
    margin-bottom: 0.5rem;
}

.case-study {
    background-color: var(--secondary-gray);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-style: italic;
}

.service-content .btn {
    margin-top: auto;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--secondary-gray);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--primary-blue);
    display: none;
}

.process-step:last-child::after {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* Contact Form Section - Новые элементы формы */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 0.5rem;
}

/* Адаптивные стили для новых элементов */
@media (max-width: 992px) {
    .approach-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.approach-text {
    flex: 1;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--secondary-gray);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.advantage-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* Modified Form Elements */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--secondary-gray);
    transition: var(--transition);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
}

.industry-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

/* Process Timeline (с последними изменениями) */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 2.5rem;
    width: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    margin-left: auto;
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    top: 12px;
    right: -18px;
    width: 36px;
    height: 36px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -18px;
}

.timeline-content {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--accent-gold);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent-gold);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Улучшенные карточки услуг */
.service-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.key-points {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.key-points li {
    margin-bottom: 0.5rem;
}

.case-study {
    background-color: var(--secondary-gray);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-style: italic;
}

.service-content .btn {
    margin-top: auto;
}

/* Улучшенная форма контактов */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Tech Stack Section */
.tech-stack {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--secondary-gray);
    transition: var(--transition);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tech-category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.tech-category h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-item {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--primary-blue);
    z-index: 1;
}

@media (max-width: 992px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .tech-categories {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-content h3 {
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.privacy-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}