/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand .cnpj {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.btn-primary:hover {
    background: #218838;
    border-color: #218838;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #007bff;
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Contact Preview */
.contact-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #333;
    font-weight: 500;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #007bff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .services-preview,
    .about-preview,
    .contact-preview {
        padding: 2rem 0;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item,
.stat {
    animation: fadeInUp 0.6s ease-out;
}

/* Acessibilidade */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Páginas internas */
.page-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Serviços detalhados */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    min-height: 300px;
}

.service-detail-content.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-detail-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    height: 100%;
    padding: 2rem;
}

.service-detail-text {
    padding: 2rem;
}

.service-detail-text h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-detail-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Por que escolher */
.why-choose {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #28a745;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    color: #28a745;
}

/* Página Sobre */
.about-company {
    padding: 4rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Missão, Visão e Valores */
.mission-vision {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mvv-icon {
    margin-bottom: 1.5rem;
}

.mvv-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mvv-item p {
    color: #666;
    line-height: 1.6;
}

/* Informações da empresa */
.company-info {
    padding: 4rem 0;
}

.company-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
}

.info-card h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #333;
    line-height: 1.6;
}

/* Atividades */
.activities {
    padding: 4rem 0;
    background: #f8f9fa;
}

.activities h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.activities-list {
    max-width: 800px;
    margin: 0 auto;
}

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.activity-item.primary {
    border-left: 4px solid #28a745;
}

.activity-item:not(.primary) {
    border-left: 4px solid #007bff;
}

.activity-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-item p,
.activity-item li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.activity-item ul {
    list-style: none;
    padding-left: 0;
}

.activity-item li {
    padding-left: 1rem;
    position: relative;
}

.activity-item li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Diferenciais */
.differentials {
    padding: 4rem 0;
}

.differentials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.differential-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-5px);
}

.differential-icon {
    margin-bottom: 1rem;
}

.differential-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.differential-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #28a745;
}

/* Responsividade para página sobre */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsividade para páginas internas */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-icon {
        padding: 1.5rem;
    }
    
    .service-detail-text {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para página de contato */
.contact-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #666;
}

.contact-details strong {
    color: #2c3e50;
    font-weight: 600;
}

.services-contact {
    padding: 4rem 0;
    background: white;
}

.services-contact h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.services-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-contact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.service-contact-item:hover {
    transform: translateY(-3px);
    background: #e9ecef;
}

.service-contact-icon {
    margin-bottom: 1rem;
}

.service-contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.location-map {
    padding: 4rem 0;
    background: #f8f9fa;
}

.location-map h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-placeholder {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-details h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.location-details p {
    color: #666;
    margin-bottom: 1.5rem;
}

.location-info {
    margin-bottom: 1.5rem;
}

.location-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-info ul {
    list-style: none;
    padding: 0;
}

.location-info li {
    color: #666;
    margin: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.location-info li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 150px;
}

.btn-secondary {
    background: #28a745;
    border-color: #28a745;
}

.btn-secondary:hover {
    background: #218838;
    border-color: #1e7e34;
}

/* Responsividade para contato */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .services-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contact-main,
    .services-contact,
    .location-map,
    .contact-cta {
        padding: 2rem 0;
    }
    
    .contact-intro h2,
    .services-contact h2,
    .location-map h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-card,
    .location-details {
        padding: 1rem;
    }
}

/* Estilos para páginas legais (Termos e Privacidade) */
.legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.document-info {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #007bff;
}

.document-info p {
    margin: 0.5rem 0;
    color: #495057;
}

.document-info strong {
    color: #2c3e50;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
}

.terms-section h3 {
    color: #495057;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.terms-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.3rem 0;
    color: #495057;
}

.document-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.document-footer p {
    color: #6c757d;
    font-style: italic;
    margin: 0.5rem 0;
}

.document-footer strong {
    color: #495057;
}

/* Links dentro do conteúdo legal */
.legal-document a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.legal-document a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsividade para páginas legais */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 0;
    }
    
    .legal-document {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .terms-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-document {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .document-info {
        padding: 1rem;
    }
    
    .terms-section {
        margin-bottom: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.1rem;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* Estilos para impressão das páginas legais */
@media print {
    .legal-content {
        padding: 0;
        background: white;
    }
    
    .legal-document {
        box-shadow: none;
        padding: 1rem;
        max-width: none;
    }
    
    .document-info {
        background: #f5f5f5;
        border: 1px solid #ddd;
    }
    
    .terms-section {
        page-break-inside: avoid;
        margin-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        page-break-after: avoid;
        border-bottom: 1px solid #333;
    }
    
    .terms-section h3 {
        page-break-after: avoid;
    }
    
    .contact-info {
        background: #f5f5f5;
        border: 1px solid #ddd;
    }
}

/* Estilos para impressão */
@media print {
    .navbar, .footer, .cta-section, .contact-cta {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .contact-grid,
    .services-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card,
    .service-contact-item {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .hero,
    .page-header {
        background: none;
        color: #333;
    }
}