css

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #007acc;
    color: #333
}

header {
    background-color: #007acc;
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    background-color: #005f99;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 2rem 1 rem;
    max-width: 800px;
    margin: 0 auto;
}

section + section {
    margin-top: 2rem; /*Controls spacing between sections */
}

h2 {
    color: #007acc;
}

.project {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
    background-color: #eee;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 10px 0;
    }
}

.tool-layout {
    /*Left Column Content */
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
}

.tool-text {
    flex: 1 1 400px;
    max-width: 600px;
    line-height: 1.6;
}

.tool-text a {
    color:#007acc;
    text-decoration: underline;
}

.tool-image {
    /*Right Image Column Content */
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tool-details {
    /*Single Column Content*/
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .tool-layout {
        flex-direction: column;
    }


.tool-image, .tool-text {
    max-width: 100%;
}
}