body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
}

.site-header {
    text-align: center;
    padding: 25px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

p {
    font-size: 18px;
    line-height: 1.7;
}

.tool-section,
.info-section,
.sample-section {
    max-width: 1000px;
    margin: auto;
    padding: 50px;
}

.big-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

.editor-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

canvas {
    border: 2px solid #000;
    border-radius: 50%;
    display: block;
}

.big-btn {
    width: 100%;
    padding: 18px;
    font-size: 22px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.sample-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sample-images img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.site-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ccc;
    font-size: 16px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #000;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.cookie-banner button {
    align-self: flex-end;
    padding: 10px 20px;
    font-size: 18px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

@media(max-width:600px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }
}