
.contact-page {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}


.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
}


.contact-page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}


.contact-page-header p {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
}


.contact-page-info {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 25px;
    background: #0f172a;
    border: 1px solid #2d3748;
    border-radius: 18px;
}


.contact-page-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    border-bottom: 1px solid #2d3748;
    gap: 20px;
}


.contact-page-item:last-child {
    border-bottom: none;
}


.contact-page-item span {
    color: #9ca3af;
}


.contact-page-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
}


.contact-page-item a:hover {
    text-decoration: underline;
}


.contact-page-form {
    max-width: 900px;
    margin: 0 auto;
}


.contact-page-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}


