* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0071b5ff;
    --secondary-color: #FF4081;
    --gradient-start: #df2634ff;
    --gradient-end: #031e4bff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    /*background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);*/
    background: #031e4bff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    flex-grow: 1;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.3s ease;
}

.content:hover {
    transform: perspective(1000px) rotateX(2deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.maintenance-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.company-info {
    text-align: left;
    margin: 2rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.company-info:hover {
    transform: translateY(-5px);
}

h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 10px;
    border-radius: 2px;
}

ul {
    list-style: none;
    margin: 1.5rem 0;
}

li {
    margin: 1rem 0;
    color: #444;
    padding-left: 1.5rem;
    position: relative;
}

li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.contact-info {
    margin-top: 3rem;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .company-info {
        padding: 1.5rem;
    }
    
    .contact-button {
        padding: 1rem 2rem;
    }
} 