/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }

/* Header & Logo Styling */
.container { width: 90%; max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo img { 
    max-width: 250px; /* Resize the display of your 1280px image to fit the header */
    height: auto; 
}

/* Navigation Links */
.nav-links a { text-decoration: none; color: #444; margin-left: 20px; font-weight: bold; }
.btn-primary { background: #5a9; color: white !important; padding: 10px 20px; border-radius: 5px; transition: 0.3s; }
.btn-primary:hover { background: #487; }

/* Hero Section */
.hero { 
    background: #f4f7f6; /* Use a calming background color */
    padding: 100px 20px; 
    text-align: center; 
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.btn-hero { 
    display: inline-block; 
    margin-top: 20px; 
    padding: 15px 30px; 
    background: #5a9; 
    color: white; 
    text-decoration: none; 
    font-size: 1.2rem; 
    border-radius: 50px; 
}