@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat&family=Yanone+Kaffeesatz:wght@200..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.content {
    flex: 1;
    max-width: 500px;
}

.title {
    font-size: 3.5rem;
    color: #e31e24;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 2rem;
    color: #e31e24;
    font-weight: 300;
    line-height: 1.4;
}

.subtitle-bold {
    font-size: 2rem;
    color: #e31e24;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.tagline {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  color: #6f5f60;
  margin-top: 30px;
  letter-spacing: 0.5px;
}


.illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.maintenance-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    
    .content {
        max-width: 100%;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle,
    .subtitle-bold {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .maintenance-image {
        max-width: 90%;
        max-height: 350px;
    }
}