html {
  font-size: 14px;
}

@media (min-width: 820px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.dropdown-menu {
    background-color: #ffffff; 
}

.dropdown-item {
    color: #fff; 
}

    /*.dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #333;
         color: #D4AF37;
    }*/

/* Reset & Fonts */
body, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

html, body {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
     color: #ffffff;
}

body {
    background-color: #ffffff;
    color: #fff;
}

/*Home Page*/
.hero-section {
    position: relative;
    min-height: 100svh;
    width: 100%;
    background-image: url('/pictures/wallpaper.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.6rem);
    margin-top: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: #a61100;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 8px;
    border: none;
}

.btn-outline-custom {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 8px;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #8f0f00;
}

.btn-outline-custom:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(16px, 5vw, 40px);
}

.center-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.navbar-brand {
    font-weight: bold;
    font-family: 'Playfair Display';
    margin-left: 0;
    padding: 10px 15px;
}

.navbar-nav .nav-link {
    color: rgb(0, 0, 0);
    margin-right: 10px;
}
.navbar-custom {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.custom-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
}

.modal-img {
    max-width: 60%;
    max-height: 70vh;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

@media (max-width: 768px) {

    .hero-section {
        min-height: 60vh;
        background-position: center;
    }

    .hero-overlay {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
    }

    .hero-title {
        line-height: 1.1;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .content-container {
        margin-top: 80px;
        max-width: 100%;
        text-align: left;
    }

    .center-btn {
        margin-left: 0;
    }

    .navbar-custom {
        background-color: rgba(0, 0, 0, 0.85);
    }

    .navbar-brand h3 {
        font-size: 1.4rem;
        margin-left: 0;
    }

    h1.display-4 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    p.lead {
        font-size: 0.95rem;
    }

    .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 65vh;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    h1.display-4 {
        font-size: 1.2rem;
    }

    p.lead {
        font-size: 0.9rem;
    }

    .content-container {
        padding: 15px;
    }
}

.hero-overlay .content-container {
    animation: slideInUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0; 
}

/* Premium Stone Materials */
.second-section {
            padding: 50px 20px;
            text-align: center;
        }

        .section-heading {
            color: #000000;
            font-family: 'Playfair Display';
            font-size: 3em;
            margin-bottom: 20px;
        }

        .second-section p {
            color: grey;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

.stone-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 2fr));
    gap: 30px;
    padding: 40px;
}

.supplier-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 22px;
    background-color: #c1c1c1; 
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.supplier-btn:hover {
    background-color: #dedada;
    color: #000000;
    transform: translateY(-2px);
}

.stone-card {
    background: rgb(244, 243, 243);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stone-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.stone-card h3 {
    color: #000000;
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

.stone-card ul {
    color: #000000;
    padding: 0 20px 20px;
    list-style: none;
    text-align: left;
}

.stone-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.stone-card ul li::before {
    content: "•";
    color: #b56a2a;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {

    .section-heading {
        margin-top: 20px;
        font-size: 2rem;
    }

    .second-section p {
        font-size: 1.05rem;
    }

    .stone-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 18px;
    }

    .stone-card img {
        height: 240px;
    }

    .stone-card h3 {
        font-size: 1.2rem;
        padding: 15px 15px 8px;
    }

    .stone-card ul {
        padding: 0 15px 15px;
    }
}

/*Featured Project Section*/
.featured-projects {
    background-color: rgb(249, 249, 249);
    text-align: center;
    padding: 60px 20px;
}

.featured-projects h2 {
    color: #000000;
    font-family: 'Playfair Display';
    font-size: 3em;
    margin-bottom: 10px;
}

.featured-projects .subtitle {
    color: grey;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.featured-projects .details {
    color: grey;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
    opacity: 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.overlay span {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {

    .featured-projects h2 {
        font-size: 2rem;
    }

    .featured-projects .subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .featured-projects .details {
    font-size: 0.7rem;
    margin-bottom: 25px;
}

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }

    .project-card img {
        height: 200px;
        object-fit: contain;
        background-color: #f4f4f4;
    }

    .overlay h3 {
        font-size: 1rem;
    }

    .overlay span {
        font-size: 0.8rem;
    }
}

/*Services Section*/
.services-section {
    text-align: center;
    padding: 70px 20px;
}

.services-section h2 {
    color: #000000;
    font-family: 'Playfair Display';
    font-size: 3em;
    margin-bottom: 10px;
}

.services-subtitle {
    color: grey;
    font-size: 1.5rem;
    margin-bottom: 45px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: rgb(241, 241, 241);;
    padding: 40px 25px;
    border-radius: 14px;
    text-align: center;
    border-radius: 5%;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 30px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: #c4c4c4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 34px;
    height: 34px;
    opacity: 0.85;
}

.service-card h3 {
    color: #000000;
    margin: 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    padding: 0 10px;
}

@media (max-width: 768px) {

    .services-section h2 {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box img {
        width: 24px;
        height: 24px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
}

/*Why Choose Us Section*/
.why-choose-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 80px auto;
    padding: 20px;
    background-color: rgb(249, 249, 249);
}

.why-text h2 {
    color: #000000;
    font-family: 'Playfair Display';
    font-size: 3em;
    margin-bottom: 15px;
}

.why-description {
    color: grey;
    font-size: 1.5rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.check-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #c5803d;
    color: #c5803d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 5px;
}

.why-list h4 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-list p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

@media (max-width: 768px) {

    .why-choose-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
        margin: 40px auto;
    }

    .why-text h2 {
        text-align: center;
    }

    .why-text {
        order: 1;
    }

    .why-image {
        order: 2;
    }

    .why-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .why-description {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .why-list li {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .why-list h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .why-list p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .check-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .why-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
    }
}

/*Our Process*/
.process-section {
    text-align: center;
    padding: 60px 20px;
}

.process-section h2 {
    color: #000000;
    font-family: 'Playfair Display';
    font-size: 3em;
    margin-bottom: 10px;
}

.process-subtitle {
    color: grey;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.process-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.process-card {
    background-color: rgb(249, 249, 249);
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.process-number {
    background: #8a4c18;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.process-card h3 {
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.process-card p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.4rem;
}

@media (max-width: 768px) {

    .process-section h2 {
        font-size: 2rem;
    }

    .process-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .process-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .process-card {
        width: 100%;
        max-width: 320px;
        padding: 20px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .process-card h3 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .process-card p {
        font-size: 1rem;
        line-height: 1.35rem;
    }
}

/*Clients Section*/
.testimonial-section {
    text-align: center;
    padding: 60px 20px;
    background-color: rgb(249, 249, 249);
}

.testimonial-section h2 {
    color: #000000;
    font-family: 'Playfair Display';
    font-size: 3em;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    color: grey;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    width: 350px;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.stars {
    color: #b56a2a;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5rem;
}

.testimonial-card h4 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.client-project {
    font-size: 1rem;
    color: #777;
}

@media (max-width: 768px) {

    .testimonial-section h2 {
        font-size: 2rem;
    }

    .testimonial-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .testimonial-container {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 320px;
        padding: 18px;
    }

    .stars {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.35rem;
    }

    .testimonial-card h4 {
        font-size: 0.95rem;
    }

    .client-project {
        font-size: 0.9rem;
    }
}

/*Contact Section*/
.contact-section {
    text-align: center;
    padding: 60px 20px;
}

.contact-section h2 {
    color: #000000;
    font-family: 'Playfair Display';
    font-size: 3em;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: grey;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form-card{
    width: 600px;
    color: #000000;
    background-color: rgb(249, 249, 249);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-info-card {
    width: 600px;
    color: #000000;
    background-color: rgb(249, 249, 249);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.contact-form-card h3,
.contact-info-card h3,
.map-card h3 {
    color: #000000;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
}

.contact-form-card label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form-card textarea {
    height: 120px;
    resize: none;
}

.contact-form-card button {
    width: 100%;
    background: #8a4b17;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form-card button:hover {
    background: #6f3a12;
}

.map-card {
    width: 1150px;
    margin: 40px auto 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.map-container {
    width: 1000px;
    height: 450px;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 0 auto;
    margin-top: 30px;
}

@media (max-width: 768px) {

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .contact-form-card,
    .contact-info-card {
        width: 100%;
        max-width: 360px;
        padding: 18px;
    }

    .map-card {
        width: 100%;
        padding: 18px;
    }

    .map-container {
        height: 300px;
    }

    .contact-form-card h3,
    .contact-info-card h3,
    .map-card h3 {
        font-size: 1.2rem;
    }

    .contact-form-card label {
        font-size: 0.9rem;
    }

    .contact-form-card input,
    .contact-form-card select,
    .contact-form-card textarea {
        font-size: 0.9rem;
        padding: 7px;
    }

    .contact-form-card button {
        font-size: 0.95rem;
        padding: 10px;
    }
}

/* Suppliers Section */
.suppliers-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.suppliers-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 2-column layout */
.suppliers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.suppliers-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

@media (max-width: 768px) {

    .suppliers-grid {
        grid-template-columns: 1fr;
    }

    .suppliers-section {
        padding: 40px 15px;
    }

    .suppliers-image {
         width: 100%;
         height: 450px;
        border-radius: 10px;
    }
}

/* Social Media */
.social {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #1c1c1c;
}

.social-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 10px;
    max-width: 550px;
    min-height: 170px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.social-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.social-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #D4AF37;
    margin-top: 5px;
}

.fb-icon {
    margin-top: 10px;
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .social {
        padding: 20px; 
    }

    .second-section {
        padding: 5px;
    }
}

/* Footer */
/* Footer Layout */
.footer-section {
    background-color: rgb(249, 249, 249);
    padding: 60px 0;
}

/* Titles & Text */
.footer-title {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.footer-subtitle {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    color: #555;
    line-height: 1.6;
}

/* Social Icons */
.footer-socials a {
    font-size: 1.4rem;
    margin-right: 15px;
    color: #000;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #a61100;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #a61100;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    color: #777;
    margin-top: 25px;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #a61100;
}

/*Privacy*/
.privacy-section {
    font-family: Arial, sans-serif;
    background-color: #3d3d3d;
    margin: 0;
    padding: 60px 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

.privacy-title{
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.updated {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.privacy-subtitle {
    margin-top: 30px;
    color: #000;
}

.privacy-p {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.terms-section {
    padding: 60px 20px;
}

@media (max-width: 768px) {
    .terms-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
