.contact-info {
    font-size: 0.85rem;
    color: #081E52;
    opacity: 0.5;
    margin-top: 96px;
}

.contact-info a {
    color: #081E52;
    text-decoration: underline;
    opacity: 0.7;
}
/* IMN Law Firm Under Construction Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFFFFF;
    color: #081E52;
    line-height: 1.6;
}

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

.content {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

/* Logo placeholder */

/* Enlarged logo styles */

.logo-large {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    /* Center horizontally */
    position: relative;
}

.logo-large-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

/* Company name */
.company-name {
    font-size: 4rem;
    font-weight: 700;
    color: #081E52;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #081E52;
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 50px;
}

/* Main content */
.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #081E52;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #081E52;
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Loading animation */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #081E52;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.coming-soon {
    font-size: 0.9rem;
    color: #081E52;
    opacity: 0.6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .company-name {
        font-size: 3rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}