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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Business Identity Section */
.business-identity {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.business-name {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.3;
}

.business-details {
    margin-bottom: 15px;
}

.business-details p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #495057;
}

.business-details strong {
    color: #212529;
    font-weight: 600;
}

.business-details a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.business-details a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.tagline {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 15px;
}

/* Section Styling */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

section p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Contact Section */
.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 25px;
    }

    .business-name {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .business-details p,
    section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .business-name {
        font-size: 1.3rem;
    }

    section h2 {
        font-size: 1.3rem;
    }
}

