
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #31344b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header.navbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #31344b;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}


.logo .highlight {
    color: #e26454;
    font-size: 1.5em;
    font-weight: 500;    
}
.logo .highlight2 {
    color: #5581b5;
    font-size: 1.2em;
    font-weight: 300;    
}

.color1 {
    color: #e26454; 
}

.color2 {
    color: #007bff; 
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #31344b;
    font-weight: 500;
}

.menu a:hover {
    color: #5581b5;
}

.tool-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.canvas-box {
    flex: 1 1 45%;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.canvas-box h2 {
    margin-top: 0;
}

.canvas-placeholder {
    background: repeating-conic-gradient(#ddd 0% 25%, transparent 0% 50%) 50% / 20px 20px;
    height: 280px;
    border: 2px dashed #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.canvas-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #446791;
}

.btn-secondary {
    background-color: #e26454;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #c34c3f;
}

.title {
    text-align: center;
}

.title h1 {
    font-size: 2.2em;
    color: #007bff;
}

.title p {
    max-width: 800px;
    margin: 10px auto 0;
}

.description {
    margin-top: 40px;
    text-align: left;
}

.description h2 {
    font-size: 1.8em;
    color: #5581b5;
}

.description p {

    text-align: left;
}

.other-tools {
    margin-top: 50px;
}

.other-tools h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #e26454;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tool-card {
    display: block;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #31344b;
    transition: background 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

footer {
    background: #f8f9fa;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
}

.footer-links a {
    text-decoration: none;
    color: #31344b;
    font-weight: 500;
}

.footer-links a:hover {
    color: #5581b5;
}
