/* MyHomeMake - Personal Home Transformation Theme */
/* Warm and inviting with earthy tones and personal touch elements */

:root {
    --primary-terracotta: #c65d3b;
    --secondary-sage: #9caf88;
    --warm-brown: #8b4513;
    --cream-white: #faf7f2;
    --soft-peach: #f4a460;
    --earthy-green: #6b8e23;
    --warm-gold: #daa520;
    --cozy-beige: #f5f5dc;
    --text-dark: #3e2723;
    --text-warm: #5d4e37;
    --border-warm: #d7ccc8;
    --shadow-warm: rgba(139, 69, 19, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--warm-brown) 100%);
    color: var(--cream-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-warm);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--warm-gold);
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cream-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid transparent;
    position: relative;
}

.nav-menu a:hover {
    color: var(--warm-gold);
    border-color: var(--warm-gold);
    background: rgba(218, 165, 32, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--cozy-beige) 50%, var(--secondary-sage) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="homePattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(198,93,59,0.1)"/><path d="M10,20 L15,15 L20,20" stroke="rgba(156,175,136,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23homePattern)"/></svg>');
    opacity: 0.4;
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero .highlight {
    color: var(--primary-terracotta);
    position: relative;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-gold) 0%, var(--soft-peach) 100%);
    border-radius: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-warm);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 300px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-heart,
.floating-home,
.floating-star {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.floating-heart {
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}

.floating-home {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.floating-star {
    top: 40%;
    right: 60%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--warm-brown) 100%);
    color: var(--cream-white);
    box-shadow: 0 8px 25px var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 93, 59, 0.4);
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--primary-terracotta) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
}

.btn-secondary:hover {
    background: var(--primary-terracotta);
    color: var(--cream-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-warm);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    font-family: 'Georgia', serif;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--primary-terracotta) 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-warm);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--cream-white);
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-warm);
    line-height: 1.7;
}

.about-text em {
    color: var(--primary-terracotta);
    font-style: italic;
    font-weight: bold;
}

.personal-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    background: linear-gradient(135deg, var(--cozy-beige) 0%, var(--cream-white) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    border: 2px solid var(--warm-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-warm);
    border-color: var(--primary-terracotta);
}

.approach-item:hover::before {
    top: -20%;
    right: -20%;
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.approach-item h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.approach-item p {
    color: var(--text-warm);
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cozy-beige) 0%, var(--cream-white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--cream-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-warm);
    border-left: 5px solid var(--warm-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-warm);
    border-left-color: var(--primary-terracotta);
}

.service-card:hover::before {
    top: -20%;
    right: -20%;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-family: 'Georgia', serif;
}

.service-card p {
    color: var(--text-warm);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--cream-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature {
    background: linear-gradient(135deg, var(--cozy-beige) 0%, var(--cream-white) 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow-warm);
    border-top: 4px solid var(--secondary-sage);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-warm);
    border-top-color: var(--warm-gold);
}

.feature:hover::before {
    top: -50%;
    left: -50%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.feature h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-family: 'Georgia', serif;
}

.feature p {
    color: var(--text-warm);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Home Warranty Section */
.warranty {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--warm-brown) 100%);
    color: var(--cream-white);
    position: relative;
}

.warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="protectionPattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,5 L30,15 L20,25 L10,15 Z" fill="rgba(218,165,32,0.1)" stroke="rgba(245,245,220,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23protectionPattern)"/></svg>');
    opacity: 0.3;
}

.warranty-content {
    position: relative;
    z-index: 2;
}

.warranty-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--warm-gold);
    font-family: 'Georgia', serif;
}

.warranty-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.warranty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.warranty-item {
    background: rgba(245, 245, 220, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.warranty-item:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: translateY(-5px);
    border-color: var(--warm-gold);
}

.warranty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.warranty-item h4 {
    font-size: 1.3rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.warranty-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--cozy-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-warm);
    line-height: 1.6;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-terracotta);
    margin-top: 0.2rem;
    min-width: 30px;
}

.contact-item strong {
    color: var(--text-dark);
}

.quote-form {
    background: var(--cream-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-warm);
    border-top: 5px solid var(--warm-gold);
    position: relative;
    overflow: hidden;
}

.quote-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
}

.quote-form h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    font-family: 'Georgia', serif;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-warm);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--cream-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-terracotta);
    box-shadow: 0 0 0 3px rgba(198, 93, 59, 0.1);
    background: var(--cozy-beige);
}

.quote-form .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Confirmation Message */
.confirmation-message {
    background: linear-gradient(135deg, var(--secondary-sage) 0%, var(--earthy-green) 100%);
    color: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.3);
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--cream-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: linear-gradient(135deg, var(--cozy-beige) 0%, var(--cream-white) 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px var(--shadow-warm);
    border-left: 5px solid var(--warm-gold);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial::before {
    content: '💝';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    opacity: 0.7;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px var(--shadow-warm);
    border-left-color: var(--primary-terracotta);
}

.testimonial:hover::after {
    top: -20%;
    right: -20%;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-warm);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial p em {
    color: var(--primary-terracotta);
    font-weight: bold;
}

.testimonial-author {
    position: relative;
    z-index: 2;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.testimonial-author span {
    color: var(--warm-gold);
    font-weight: bold;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--warm-brown) 100%);
    color: var(--cream-white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 L35,20 L25,30 L15,20 Z" fill="rgba(218,165,32,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    color: var(--warm-gold);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.footer-section h3 {
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--warm-gold);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-approach,
    .warranty-features {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 200px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .quote-form,
    .service-card,
    .feature,
    .testimonial {
        padding: 2rem;
    }
    
    .approach-item,
    .warranty-item {
        padding: 1.5rem;
    }
}

/**************Newsletter*********************/


/* Hero Section */
.newsletter-page {
    padding-top: 150px;
    padding-bottom: 80px;
}
.newsletter-hero {
  background: linear-gradient(to right, #fef7f1, #fff);
  padding: 4rem 0;
  text-align: center;
}

.newsletter-hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #e76f51;
}

.newsletter-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Layout */
.newsletter-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.newsletter-benefits {
  flex: 1 1 45%;
}

.newsletter-form-container {
  flex: 1 1 50%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Benefits Section */
.benefit-list {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  background-color: #f1f8ff;
  padding: 1rem;
  border-left: 4px solid #0077cc;
  border-radius: 6px;
}

.benefit-item h3 {
  margin-top: 0;
  color: #0077cc;
}

.benefit-item p {
  margin: 0.5rem 0 0;
}

/* Form Section */
.newsletter-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #e76f51;
}

.newsletter-form-wrapper p {
  margin-bottom: 1.5rem;
}

.newsletter-form .form-group {
  margin-bottom: 1.5rem;
}

.newsletter-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="date"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-form small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #777;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

.radio-option input,
.checkbox-option input {
  margin-right: 0.6rem;
}

/* Custom Checkbox/Radio Styling */
input[type="radio"],
input[type="checkbox"] {
  accent-color: #e76f51;
}

/* Consent Section */
.consent-group .consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.consent-text {
  line-height: 1.5;
}

.consent-text a {
  color: #0077cc;
}

/* Submit Button */
.btn-primary {
  display: inline-block;
  background-color: #e76f51;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #d65a3f;
}

.btn-secondary {
  display: inline-block;
  background-color: #f1f1f1;
  color: #333;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 1rem;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background-color: #e2e2e2;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}

/* Confirmation Message */
.confirmation-message {
  padding: 2rem;
  background-color: #e7f5e1;
  border: 1px solid #b6e2b1;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.confirmation-content h3 {
  color: #4caf50;
}

.confirmation-actions {
  margin-top: 1.5rem;
}

.confirmation-actions a {
  margin-right: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-layout {
    flex-direction: column;
  }

  .newsletter-form-container {
    padding: 1.5rem;
  }

  .btn-secondary {
    margin-bottom: 0.75rem;
    margin-right: 0;
    display: block;
  }
}

/****************Privacy Page***************/
.privacy-page {
    padding-top: 150px;
    padding-bottom: 80px;
}

/* Privacy Content Sections */
.privacy-content .policy-section {
  margin-bottom: 3rem;
  
}

.terms-page {
    padding-top: 150px;
    padding-bottom: 80px;
}

.policy-section h2 {
  font-size: 1.6rem;
  color: #e76f51;
  margin-bottom: 0.75rem;
}

.policy-section h3 {
  font-size: 1.2rem;
  color: #0077cc;
  
}

.policy-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}

.policy-section ul li::before {
  content: "•";
  position: absolute;
  left: -0.8rem;
  color: #e76f51;
  font-size: 1.2rem;
  line-height: 1;
}

/* Emphasis in List Items */
.policy-section ul li strong {
  color: #333;
  font-weight: 600;
}

/* Trust Commitment Section */
.trust-commitment {
  background-color: #f9f5f2;
  border-left: 4px solid #e76f51;
  padding: 1.5rem;
  border-radius: 8px;
}

.trust-commitment h2 {
  color: #d35400;
}

.trust-commitment p {
  font-size: 1.05rem;
  color: #444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }

  .trust-commitment {
    padding: 1rem;
  }
}