/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
}

main {
    padding: 20px 0;
}

.section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.section p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

/* Grid layout for services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service p {
    margin-bottom: 10px;
    color: #555;
}

/* Currency styling */
.currency {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
}

.currency span {
    font-weight: bold;
}

.currency p {
    margin: 5px 0;
}

.currency .usd {
    color: #4CAF50;
}

.currency .gbp {
    color: #007bff;
}

.currency .robux {
    color: #f48024;
}

/* Form styling */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

select, input[type="radio"] {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Result section */
.result {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.result h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 30px;
    border-top: 2px solid #007bff;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive design adjustments */
@media (max-width: 992px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    header h1 {
        font-size: 2.2rem;
    }
    header p {
        font-size: 1rem;
    }
    .section {
        padding: 15px;
    }
    .service {
        padding: 15px;
    }
    .result h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 90%;
    }
    .currency {
        flex-direction: column;
        align-items: center;
    }
    .currency p {
        text-align: center;
    }
}

/* Additional CSS for enhanced visual appeal */

/* Header styles */
header {
    position: relative;
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,123,255,0.8), rgba(0,198,255,0.8)), url('background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

header h1, header p {
    position: relative;
    z-index: 1;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 80px 0;
    background-color: #007bff;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services section */
.services {
    margin-top: 40px;
}

.service {
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form styles */
form {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px;
}

.form-group {
    display: flex;
    align-items: center;
}

label {
    width: 120px;
    flex-shrink: 0;
}

select, input[type="radio"] {
    flex-grow: 1;
}

/* Button styles */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Result section */
.result {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.result h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.currency {
    margin-top: 20px;
    font-size: 1.3rem;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer p {
    margin-bottom: 0;
}

/* Additional visual enhancements */
body {
    background-image: linear-gradient(to bottom right, #f0f0f0, #e0e0e0);
}

.section h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section p {
    text-indent: 20px;
}

.service {
    border-left: 5px solid #007bff;
}

.service h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.service p {
    padding-left: 10px;
    position: relative;
}

.service p:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.5rem;
}

form {
    background-image: linear-gradient(to bottom right, #fff, #f9f9f9);
}

.form-group {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

input[type="radio"] {
    width: auto;
}

input[type="submit"] {
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

input[type="submit"]:active {
    transform: scale(0.98);
}

.result {
    background-image: linear-gradient(to bottom right, #f9f9f9, #fff);
}

.result h3 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.currency {
    justify-content: space-around;
}

.currency span {
    display: block;
    margin-bottom: 5px;
}

footer {
    border-top: 2px solid #007bff;
}

footer p {
    padding: 10px;
}

footer a {
    background-color: #007bff;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

footer a:hover {
    background-color: #0056b3;
}

@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    header p {
        font-size: 1rem;
    }
    .hero {
        padding: 60px 0;
    }
    .section {
        padding: 15px;
    }
    .result {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    header h1 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Decorative dividers */
.section {
    position: relative;
    overflow: hidden;
}

.section:before,
.section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: #007bff;
}

.section:before {
    top: 0;
    left: 0;
    border-radius: 0 0 10px 10px;
}

.section:after {
    bottom: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
}

/* Input focus effects */
select:focus,
input[type="radio"]:focus,
input[type="submit"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Form validation styles */
input:invalid {
    border-color: #dc3545;
}

input:valid {
    border-color: #28a745;
}

input:valid ~ .form-group label {
    color: #28a745;
}

input:invalid ~ .form-group label {
    color: #dc3545;
}

/* Custom scroll bar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Animation for service cards */
.service {
    animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Icon buttons */
.btn-icon {
    display: flex;
    align-items: center;
}

.btn-icon .icon {
    margin-right: 10px;
}

/* Pricing table styles */
.pricing-table {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pricing-card {
    flex-basis: 30%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.pricing-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.pricing-card p {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    color: #007bff;
}

.pricing-card .price span {
    font-size: 1.2rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.pricing-card ul li:before {
    content: '✔';
    color: #007bff;
    margin-right: 10px;
}

.pricing-card button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.pricing-card button:hover {
    background: #0056b3;
}

/* Adding additional styles for input fields */
input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus,
textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

textarea {
    resize: vertical;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
    background-color: #007bff;
    color: #fff;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-success {
    background-color: #28a745;
}

.badge-danger {
    background-color: #dc3545;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-info {
    background-color: #17a2b8;
}

.badge-light {
    background-color: #f8f9fa;
    color: #212529;
}

.badge-dark {
    background-color: #343a40;
}

.badge-primary {
    background-color: #007bff;
}

.badge-secondary {
    background-color: #6c757d;
}
