body{

    font-family:Arial,sans-serif;

    background:#f4f4f4;

    margin:0;

}

header{

    background:#20232a;

    color:white;

    padding:20px;

}

header h1{

    margin:0;

}

nav{

    margin-top:10px;

}

nav a{

    color:white;

    text-decoration:none;

    margin-right:20px;

    font-weight:bold;

}

.container{

    max-width:1000px;

    margin:auto;

    background:white;

    padding:30px;

    margin-top:30px;

    border-radius:10px;

    box-shadow:0 0 10px rgba(0,0,0,.1);

}

footer{

    text-align:center;

    padding:20px;

    color:#777;

    margin-top:40px;

}

button{

    padding:10px 20px;

    cursor:pointer;

}

input,
select{

    padding:8px;

}

.tool-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

margin-top:20px;

}

.tool-card{

display:block;

padding:24px;

background:white;

border-radius:12px;

text-decoration:none;

color:#222;

box-shadow:0 2px 8px rgba(0,0,0,.08);

transition:.2s;

}

.tool-card h3{

margin:0 0 10px;

font-size:22px;

}

.tool-card p{

margin:0;

color:#666;

line-height:1.5;

}

.tool-card:hover{

transform:translateY(-4px);

box-shadow:0 10px 20px rgba(0,0,0,.15);

}

h2{

margin-top:0;

}

/* ---------- Forms ---------- */

form{

    margin-top:25px;

}

label{

    display:block;

    font-weight:bold;

    margin-bottom:8px;

    margin-top:15px;

}

input[type="text"],
input[type="file"],
select{

    width:100%;

    box-sizing:border-box;

    padding:12px;

    border:1px solid #ddd;

    border-radius:8px;

    margin-bottom:15px;

    font-size:15px;

    background:white;

}

button{

    background:#20232a;

    color:white;

    border:none;

    border-radius:8px;

    padding:12px 24px;

    font-size:15px;

    font-weight:bold;

    transition:.2s;

}

button:hover{

    background:#30343d;

}

small{

    color:#666;

}

/* ---------- Hero ---------- */

.hero{

margin-bottom:40px;

}

.hero h1{

margin-bottom:10px;

font-size:44px;

}

.hero-subtitle{

font-size:22px;

font-weight:bold;

color:#444;

}

.hero-features{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-top:20px;

}

.hero-features span{

background:#20232a;

color:white;

padding:8px 14px;

border-radius:20px;

font-size:14px;

}

/* ---------- Disabled Cards ---------- */

.disabled{

opacity:.55;

cursor:not-allowed;

pointer-events:none;

}

hr{

margin:50px 0;

border:none;

border-top:1px solid #ddd;

}
