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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-link {
    font-size: 2.5rem;
    color: #2c3e50;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-link:hover {
    background-color: #2c3e50;
    color: white;
    transform: scale(1.05);
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem;
    margin-top: auto;
}

.company-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.company-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

address {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info a {
    color: #a8e6cf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #dcedc1;
}
