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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.main-section {
    display: flex;
    min-height: 500px;
}

/* Full-height rectangular gold bar */
.accent-bar {
    width: 12px;
    background-color: #FFB300;
    flex-shrink: 0;
}

.text-content {
    padding: 60px;
    flex: 1;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #4682B4;
    font-weight: 700;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #FFB300;
    margin: 30px 0;
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    margin: 40px 0;
}

.contact-intro {
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.phone, .email {
    display: block;
    color: #4682B4;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0;
    transition: color 0.3s;
}

.phone:hover, .email:hover {
    color: #FFB300;
}

.license {
    color: #999;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .text-content {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .phone, .email {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .accent-bar {
        width: 8px;
    }
    
    .text-content {
        padding: 30px 20px;
    }
}