* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #d2691e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 400px;
    display: block;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    color: #d2691e;
    letter-spacing: 0.5px;
    margin-top: -10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #54595f;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item:active {
    opacity: 0.6;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #fe8800;
}

.contact-item span {
    word-break: break-all;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .tagline {
        font-size: 1.5rem;
    }
    
    .contact-item {
        font-size: 1.1rem;
    }
    
    .icon {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        max-width: 500px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .content {
        gap: 40px;
    }
    
    .tagline {
        font-size: 1.75rem;
    }
    
    .contact-info {
        gap: 25px;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .tagline {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .logo {
        max-width: 280px;
    }
}
