@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Regular.woff2') format('woff2'),
         url('./fonts/Vazirmatn-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Very light gray background */
    color: #343a40; /* Darker gray for main text */
    line-height: 1.8;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* Subtle gradient background */
}
.container {
    background: #ffffff; /* Pure white container background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Softer, deeper shadow */
    max-width: 750px; /* Slightly wider container */
    text-align: center;
    margin: 30px;
    border: 1px solid #e0e0e0; /* Subtle border */
}
h1 {
    color: #007bff; /* Vibrant blue for heading */
    margin-bottom: 25px;
    font-size: 2.5em;
    font-weight: 700; /* Bolder heading */
    padding-bottom: 10px; /* Add padding for the line */
    border-bottom: 2px solid #e0e0e0; /* Subtle separator line */
    display: inline-block; /* Make border-bottom apply to content width */
}
h2 {
    color: #0056b3; /* Darker blue for secondary heading */
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 700;
    padding: 10px 20px;
    background-color: #f0f8ff; /* Light background for highlight */
    border-radius: 8px;
    border: 1px solid #d0e7ff; /* Subtle border */
    display: inline-block; /* To apply padding and border */
}
p {
    margin-bottom: 18px;
    font-size: 1.15em; /* Slightly larger paragraph text */
}
.highlight {
    color: #fd7e14; /* Orange for highlight */
    font-weight: bold;
    font-size: 1.25em;
}
.price-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.price-list li {
    background: #e9f0f6; /* Lighter background for list items */
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.15em;
    border-left: 5px solid #007bff; /* Accent border on left */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.price-list li:hover {
    transform: translateY(-3px); /* Slightly lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); /* Enhance shadow on hover */
}
.contact-info {
    margin-top: 40px;
    font-size: 1.15em;
    color: #555;
}
.contact-info p strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #007bff;
}
.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}
.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}
.urgent-message {
    color: #fff; /* White text for urgent message */
    font-weight: 800;
    font-size: 1.4em;
    margin-top: 25px;
    padding: 15px 25px; /* More padding for button feel */
    background-color: #dc3545; /* Red background for urgency */
    border-radius: 8px;
    border: none; /* Remove dashed border */
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.4); /* Shadow for button effect */
    cursor: pointer;
    display: inline-block; /* To allow padding and margin */
    text-decoration: none; /* Remove underline from link */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.urgent-message:hover {
    background-color: #c82333; /* Darker red on hover */
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.6); /* More prominent shadow on hover */
}
.emoji {
    font-size: 1.6em;
    vertical-align: middle;
    margin: 0 5px; /* Increase margin for better spacing */
}

.SVGInline-svg path {
    fill: currentColor;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .container {
        margin: 15px;
        padding: 25px;
        max-width: 90%; /* Adjust max-width for smaller screens */
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .price-list li {
        font-size: 1em;
        padding: 12px;
    }

    .contact-info {
        font-size: 1em;
        margin-top: 30px;
    }

    .urgent-message {
        font-size: 1.2em;
    }
    .emoji {
        font-size: 1.4em;
    }
} 