/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header h1 {
    float: left;
    margin-top: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover, header a.active {
    color: #0779e4;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    color: white;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
}

.hero-text h2 {
    margin: 0;
}


/* Main Content */
main {
    padding: 20px 0;
}

.intro, .about-us, .tool-list {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

h2 {
    color: #333;
}

/* Tool Page */
.tool-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px #eee solid;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Home Page Features */
.features {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}
.feature-item {
    margin-bottom: 20px;
}
.feature-item h3 {
    color: #0779e4;
    margin-bottom: 5px;
}

/* About Page Philosophy */
.philosophy {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}
.philosophy p {
    margin-bottom: 10px;
}



/* Footer */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #333;
    text-align: center;
}
