/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff9e6;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: #ff6b6b;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.logo-text {
    text-align: left;
}

.company-name {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.tagline {
    font-style: italic;
    font-size: 1.2rem;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-title {
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #ff6b6b;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
}

/* Button Styles */
.btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: #ff5252;
}

.btn-secondary {
    background-color: #6b6bff;
}

.btn-secondary:hover {
    background-color: #5252ff;
}

/* Message Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Link Styles */
.text-link {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: #ff5252;
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    footer nav {
        margin-top: 10px;
    }
    
    footer nav a {
        margin: 0 10px;
    }
}

/* Payment Page Styles */
.payment-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
 
    gap: 30px;
}

.order-summary {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.payment-form {
    grid-column: 1 / -1;
}

.payment-security {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

/* Order Confirmation Styles */
.order-confirmation {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-message {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.icon-success {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-success svg {
    width: 30px;
    height: 30px;
    color: #155724;
    stroke-width: 3;
}

.order-details {
    text-align: left;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-label {
    font-weight: bold;
}

/* Responsive Styles */

