/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1227px;
    margin: 0px auto;
    
    padding: 0px 5px;
}

/* Header */
header {
    background: #ffca33;
    color: #fff;
    padding: 0px; 0px;
    margin-left:0px;
}

header .logo {
    font-size: 1.8em;
    display: inline-block;
    margin-left:5px;
}

.navbar {
    display: inline-block;
    float: right;
}

.navbar .nav-links {
    list-style: none;
}

.navbar .nav-links li {
    display: inline;
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
}

/* Main Content */
main {
    display: flex;
}

.hero {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    flex: 2;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5em;
}

.hero-content p {
    font-size: 1.2em;
    margin: 2px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
}

/* Right Side Menu */
.right-side-menu {
    background: #f4f4f4;
    padding: 20px;
    margin-left: 0px;
    flex: 1;
}

.right-side-menu h3 {
    margin-bottom: 15px;
}

.right-side-menu ul {
    list-style: none;
}

.right-side-menu ul li {
    margin-bottom: 10px;
}

.right-side-menu ul li a {
    text-decoration: none;
    color: #007bff;
}

/* Section Styling */
section {
    padding: 60px 20px;
}

h2 {
    margin-bottom: 20px;
}

.about, .services, .contact {
    background: #f4f4f4;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer p {
    margin: 0;
}
