/* Google Fonts підключаємо в header.tpl або тут */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Roboto+Mono&display=swap');

.hero-slider-wrapper {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #f2f2f2;
}

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

.slide-content {
    max-width: 800px;
}

.slide-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 72px; 
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
}

.slide-content p {
    font-family: 'Roboto Mono', monospace;
    font-size: 19px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-get-touch {
    display: inline-block;
    background-color: #3FB65C;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-get-touch:hover {
    background-color: #000;
    transform: translateY(-2px);
}