body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #003f5c;
    font-size: 20px;
    margin-bottom: 20px;
}

.instructions { /* If you are using this class somewhere */
    background-color: #e9f5ff;
    border-left: 4px solid #003f5c;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

textarea { /* If you are using this class somewhere */
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

button { /* If you are using this class somewhere */
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #003f5c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00527a;
}

.footer { /* If you are using this class somewhere */
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer a { /* If you are using this class somewhere */
    color: #003f5c;
    text-decoration: none;
}

.footer a:hover { /* If you are using this class somewhere */
    text-decoration: underline;
}

.conversion-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.option {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #003f5c;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.option:hover {
    transform: scale(1.05);
}

.option img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.option:hover img {
    transform: scale(1.1);
}

.option h2 {
    color: #003f5c;
    margin-bottom: 10px;
    font-size: 18px;
}

.option p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 600px) {
    .option {
        padding: 15px;
    }
    .option h2 {
        font-size: 16px;
    }
}