.page-standard {
    padding: 120px 24px 80px 24px;
    min-height: calc(100vh - 20px);
}

.page-standard-container {
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(-120px);
}

.page-standard-title {
    font-size: 28px;
    font-weight: 300;
    color: #000000;
    text-align: center;
}

.page-standard-box {
    background: white;
    padding: 48px;
    margin-bottom: 40px;
}

.page-standard-content {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.page-standard-content p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-standard {
        padding: 100px 20px 60px 20px;
        min-height: calc(100vh - 20px);
    }
    
    .page-standard-container {
        max-width: 100%;
        transform: translateX(0);
    }
    
    .page-standard-title {
        font-size: 24px;
        margin-top: 50px;
        margin-bottom: 12px;
    }
    
    .page-standard-box {
        padding: 32px 20px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.contact-row {
    display: flex;
    gap: 60px;
    width: 100%;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.contact-value {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
}

.contact-value:hover {
    opacity: 0.7;
}

.contact-email-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copy-email-btn {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-email-btn svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.copy-email-btn:hover {
    border-color: #000000;
    background: #f9fafb;
}

.copy-email-btn:hover svg {
    color: #000000;
}

.contact-description {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0;
    max-width: 400px;
}

.contact-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: #6b7280;
}

.social-link:hover {
    border-color: #000000;
    background: #f9fafb;
}

.social-link:hover svg {
    color: #000000;
}

@media (max-width: 768px) {
    .contact-info {
        gap: 60px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }
    
    .contact-item {
        gap: 12px;
        justify-content: center;
        text-align: center;
    }
    
    .contact-info-content {
        align-items: center;
    }
    
    .contact-email-row {
        justify-content: center;
    }
}