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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-panel {
    background-color: #ffffff;
    border-radius: 8px;
    border: 3px solid #2c5f2d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.company-header {
    text-align: center;
}

.company-name {
    font-size: 6rem;
    line-height: 1;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
}

.contact-label {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
}

.contact-link {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a3d1b;
    text-decoration: underline;
}

.contact-address {
    color: #333;
    font-style: normal;
    line-height: 1.8;
}

.owner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.owner-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2c5f2d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.owner-name {
    color: #333;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .content-panel {
        padding: 40px 30px;
        gap: 40px;
    }

    .company-name {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .content-panel {
        padding: 30px 20px;
        gap: 30px;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .contact-info {
        gap: 20px;
    }

    .owner-photo {
        width: 60px;
        height: 60px;
    }

    .owner-content {
        gap: 12px;
    }
}
