/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f8f9fa;
}

/* Main Content */
.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Logo Container */
.logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo {
    width: 120px;
    height: 120px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #6c757d;
    letter-spacing: 2px;
}

/* Text Content */
.text-content {
    margin-bottom: 2rem;
}

.title {
    
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #212529;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info */
.contact-info {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
    margin-top: 2rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.email {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 3rem 2rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2rem 1.5rem;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}