body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #0A2342;  
    color: #0A2342;  
}

.container {
    background-color: #FF6F3C;  
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1, h2, h3, p, div, span, input, select, option, label, button {
    color: #0A2342;  
}

.input-group, .room-selector {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#calculate-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.results {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

.results p {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
}

.results p span {
    font-weight: bold;
    color: #4CAF50;
}

.construction-options, .bathroom-options {
    margin-top: 20px;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-item {
    background-color: #ffffff;
    color: #0A2342;  
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.option-item:hover {
    background-color: #0A2342;
    color: #FF6F3C;
}

.bathroom-category {
    margin-bottom: 20px;
}

.bathroom-category h3 {
    border-bottom: 2px solid #e7e7e7;
    padding-bottom: 10px;
}

.main-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.nav-item {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: background-color 0.3s;
}

.nav-item:hover, .nav-item.active {
  background-color: #0A2342;
  color: #FF6F3C;
}

.specialties-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.specialty-category {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.specialty-category h2 {
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.landing-page {
    text-align: center;
    background-color: #0A2342;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
}

.welcome-message {
    max-width: 700px;
}

.welcome-message h1 {
    color: #FF6F3C;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.welcome-message h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.motivational-text {
    font-size: 1.2em;
    line-height: 1.6;
}

.preparation-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 700px;
}

.preparation-section h3 {
    margin-bottom: 20px;
}

.preparation-items {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.preparation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.preparation-item svg {
    stroke: #FF6F3C;
    stroke-width: 2;
    fill: none;
}

.cta-section {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #FF6F3C;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff9933;
}

.pricing-results {
  margin-top: 20px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
}

.pricing-results h3 {
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.pricing-results p {
  display: flex;
  justify-content: space-between;
  background-color: #f0f0f0;
  padding: 8px;
  border-radius: 4px;
  margin: 10px 0;
}

.pricing-results p:nth-child(even) {
  background-color: #e7e7e7;
}

.painting-service-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.painting-options {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.painting-option {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.painting-option h2 {
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.option-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-range p {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.painting-results {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.budget-details p {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin: 10px 0;
}

.total-price {
  font-size: 1.2em;
  background-color: #e7e7e7 !important;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.company-logo {
    max-width: 300px;
    height: auto;
}

.logo-container-large {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.company-logo-large {
    max-width: 600px;  
    height: auto;
}

.title-box {
    background-color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.title-box h1 {
    color: #0A2342;
    margin: 0;
}

.site-footer {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #ffffff;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.company-logo-homepage {
    max-width: 350px;  
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-container-homepage {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.company-logo-homepage-small {
    max-width: 250px;  
    height: auto;
    display: block;
    margin: 0 auto;
}

.painting-disclaimer {
  text-align: center;
  margin: 15px 0;
  color: #666;
}

.painting-disclaimer p {
  font-style: italic;
}

.budget-summary-container {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

.budget-details {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.room-budget {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #e7e7e7;
}

.total-cost {
  text-align: right;
  margin-top: 20px;
  padding: 15px;
  background-color: #f0f0f0;
  border-radius: 8px;
}

.budget-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-btn {
  padding: 15px;
  background-color: #FF6F3C;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.action-btn:hover {
  background-color: #0A2342;
}

.contact-info {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info a {
  color: #FF6F3C;
  text-decoration: none;
}

.painting-options-select {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.service-choices {
  display: flex;
  gap: 20px;
}

.service-choice {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-btn-green {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.action-btn-green:hover {
  background-color: #45a049;
}

.material-quality-note {
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.material-quality-note h4 {
  margin-bottom: 10px;
  color: #0A2342;
}