* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #eaf4f4;
    color: #ffffff;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.welcome-text {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    width: 80%;
    max-width: 600px;
}

.star {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 0 1rem;
}

hr {
    flex-grow: 1;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffd700, transparent);
}

.inspiration-quote {
    text-align: center;
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeIn 2s ease-in 1s forwards;
}

.inspiration-quote p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    letter-spacing: 2.5px;
}

.cta-text {
    color: #ffd700;
    font-weight: bold;
}

.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 70%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 20px;
    height: 30px;
    border: 2px solid #181515;
    border-radius: 20px;
    margin: 0 auto 1rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@media (max-width: 768px) {
    .welcome-text {
        font-size: 2.5rem;
    }
    
    .inspiration-quote p {
        font-size: 1.2rem;
    }
}


/* Index.html page */
/* Existing styles for landing page */

.main-content {
    background-color: #f0f0cf;
    padding: 2rem;
}

.banner {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.banner-image {
    width: 100%;
    height: 400px;
    filter: brightness(0.7);
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar {
    background-color: #d2b48c;
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.navbar ul {
    list-style: none;
    padding: 0;
}

.navbar li {
    display: inline;
    margin: 0 1rem;
}

.navbar a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff6347;
}

.artwork-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

.artwork-item {
    width: 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgb(246, 225, 194);
}

.artwork-item img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.artwork-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.artwork-detail-page {
    background-color: #b4b682;
    min-height: 100vh;
}

.detail-nav {
    background-color: #f4f1e4;
    border: 1px solid #8b8b69;
    border-radius: 10px;
    width: 90%;
    margin: 20px auto;
    padding: 10px 0;
}

.detail-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-nav a {
    color: #333;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.artwork-detail-container {
    width: 70%;
    margin: 40px auto;
    padding: 20px;
    margin-left: 250px;
}

.artwork-number {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 30px;
}

.artwork-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.artwork-image {
    flex: 0 0 50%;
}

.main-artwork {
    width:100%;
    height: 65vh;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.frame-number {
    margin-top: 10px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.artwork-description {
    flex: 1;
    padding: 20px;
}

.quote-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.description-text {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.footer {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    margin: 0 15px;
    color: #333;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artwork-content {
        flex-direction: column;
    }

    .artwork-image {
        flex: 0 0 100%;
    }

    .artwork-description {
        padding: 20px 0;
    }
}

/* */
/* Blog Page Styles */
.blog-page {
    background-color: #b4b682;
    min-height: 100vh;
}
/* Blog Page Styles */
.blog-page {
    background-color: #b4b682;
    min-height: 100vh;
}
.blog-container {
    width: 90%;
    margin: 40px auto;
    padding: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-content {
    background-color: #e5d5d5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-text {
    padding: 20px;
}

.blog-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.blog-date {
    font-family: 'Poppins', sans-serif;
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Active nav link */
.navbar a.active {
    text-decoration: underline;
    font-weight: bold;
}


/* Blog Page Styles */
.blog-page {
    background-color: #b4b682;
    min-height: 100vh;
}

.blog-container {
    width: 90%;
    margin: 40px auto;
    padding: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-content {
    background-color: #e5d5d5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-text {
    padding: 20px;
}

.blog-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: #333;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.blog-date {
    font-family: 'Poppins', sans-serif;
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Active nav link */
.navbar a.active {
    text-decoration: underline;
    font-weight: bold;
}

/* */
/* Blog Description Page Styles */
.blog-description-page {
    background-color: #b4b682;
    min-height: 100vh;
}

.blog-description-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.blog-content {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #333;
    padding: 10px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content strong {
    color: #000;
    font-weight: 600;
}

.blog-image-container {
    margin: 30px 0;
    text-align: center;
}

.blog-image_1 {
    width: 100%;
    max-width: 900px;
    height: 430px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.frame-number {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: right;
}

.blog-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-signature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-signature img {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-description-container {
        width: 95%;
        padding: 20px;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 0.95rem;
    }
}


/* */
/* Base Styles */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #F5A623;
    --text-color: #333;
    --background-color: #fff;
    --accent-color: #E2725B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: "https://i.pinimg.com/736x/55/54/08/555408f43484b809afd643ea881b7345.jpg";*/
    background: rgba(81, 26, 41, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family:cursive;
}

.hero .tagline {
    font-size: 1.2rem;
    font-style: italic;
}

/* About Artist Section */
.about-artist {
    padding: 100px 0;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.profile-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.artist-info {
    padding: 20px;
    background: rgb(246, 235, 235);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.artist-info h2 {
    font-size: 25px;
    font-family:cursive;
    letter-spacing: 1px;
    margin-bottom: 17px;
    color: #993c2a;
}

.bio {
    font-family: cursive;
    font-size: 16.5px;
    letter-spacing: 1px;
}

/* Artistic Style Section */
.artistic-style {
    padding: 100px 0;
    background-color: #e8d4d4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px;
    border: 1px solid black;
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: #e3f2ca;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
}

/* Featured Work Section */
.featured-work {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    margin-top: 40px;
    width: 600px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background-color:rgb(51, 47, 50);
    color: white;
    font-family:cursive;
    font-size: 20px;
    letter-spacing: 2px;
}

.social-links {
    margin: 30px 0;
}

.social-icon {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.52rem;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;

}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 70%;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    width: 30%;
    padding: 15px;
    border: none;
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 3px;
    background: rgb(211, 162, 47);
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .profile-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
        margin: 10px 0;
    }
}

.artistic-style {
    padding: 40px 0;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    animation: scroll 30s linear infinite;
    padding: 10px;
}

.gallery-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.gallery-item {
    flex: 0 0 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 4)); /* Adjust based on number of items */
    }
}

/* Pause animation on hover */
.gallery-grid:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 250px;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

.testimonial-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
    animation: slideTestimonials 30s linear infinite;
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.testimonial-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.achievement {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #444;
    margin-top: 15px;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    28% {
        transform: translateX(0);
    }
    33% {
        transform: translateX(-100%);
    }
    61% {
        transform: translateX(-100%);
    }
    66% {
        transform: translateX(-200%);
    }
    94% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-slider:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 20px;
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.shop-header {
    text-align: center;
    height: 200px;
    padding: 56px 30px;
    background-color: #e56b6f;
}

.shop-container {
    padding: 25px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
}

.product-price {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
}

.add-to-cart {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #45a049;
}

.testimonials_shop {
    padding: 0px 20px;
    background-color: #eaac8b;
    text-align: center;
    position: relative;
    margin-bottom: -32px;
}

.testimonials_shop h2 {
    margin-top: 28px;
    padding: 20px;
}

.testimonial-container_shop {
    margin-top: 76px;
    margin-left: 35px;
    margin-right: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    justify-content: start;
    gap: 25px;
    padding: 10px;
}

.testimonial-slider_shop {
    display: flex;
   /* overflow: hidden;
    position: relative;
    animation: slideTestimonials 20s linear infinite; */
    display: flex;
    gap: 25px;
   /* background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 460px; */
}

.testimonial-slide_shop {
   /* min-width: 100%;
    transition: transform 0.5s ease;
    padding: 20px; /* Added padding for better spacing */

    flex: 0 0 auto; /* Ensures items don't shrink */
    width: 400px; /* Fixed width for each testimonial */
    height: 150px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.testimonial-slide_shop p {
    font-size: 18px;
    color: #282727;
    margin-bottom: 10px; /* Space between text and name */
}

.testimonial-slide_shop span {
    display: block;
    font-weight: bold;
    color: #555;
    margin-top: 5px; /* Space between quote and customer name */
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    33% { transform: translateX(0); }
    34% { transform: translateX(-100%); }
    66% { transform: translateX(-100%); }
    67% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}


.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}

/* info page */
/*body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}*/

.info-header {
    text-align: center;
    padding: 40px 0;
    height: 280px;
    background: url('https://i.pinimg.com/736x/71/b6/61/71b6617d308f1d6a37bf935a0639f49a.jpg') no-repeat center center/cover;
    color: white;
    margin-bottom: 1px;
}

.info-header h1{
    margin-top: 38px;
    padding: 10px;
    color: black;
    font-weight: 850;
}

.info-header p{
    padding: 10px;
    color: rgb(167, 86, 86);
    font-weight: 550;
}

.about-arcylica {
    text-align: center;
    padding: 15px;
    background: #ffeeee;
}

.about-arcylica h2 {
    font-weight: 850;
    color: rgb(207, 110, 126);
}

.about-arcylica p{
    margin-top: 15px;
    margin-bottom: 20px;
    color: black;
    margin-left: 62px;
    margin-right: 62px;
    letter-spacing: 1px;
}

.offerings{
    padding: 15px;
    margin-top: 2px;
    background: #f6dddd;
    text-align: center;
}

.offerings h2{
    color: rgb(188, 92, 108);
}

/* Offerings Grid */
.offer-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.offer-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 190px;
    gap: 20px;
}

.offer-item p {
    margin-top: 12px; /* Adjusts spacing between elements */
}


.artist_1 {
    text-align: center;
    padding: 15px;
    margin-top: 2px;
    background: #ffeeee;
}

.artist_1 h2{
    color: rgb(201, 113, 128);
}

/* Artist Section */
.artist-inforum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.artist-inforum img {
    width: 150px;
    height: 190px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.artist-inforum p{
    font-size: 17px;
    font-weight: 500;
    color: black;
    letter-spacing: 0.5px;
}

.how-it-works{
    text-align: center;
    background: rgb(255, 241, 243);
    margin-top: 1.5px;
    padding: 10px;
}

.how-it-works h2{
    color: rgb(168, 83, 97);
}

/* Steps Section */
.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.step {
    background: #ffddd2;
    padding: 16px;
    border-radius: 8px;
    color: black;
    font-size: 16px;
}

.testimonials_info {
    text-align: center;
    background-color: rgb(255, 236, 239);
    margin-top: 2.5px;
    padding: 10px;
    height: 250px;
}

.testimonials_info h2 {
    color: rgb(201, 113, 128);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-slider_info {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    justify-content: center;
}

.testimonial_info {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    width: 250px;
}

.sustainability {
    text-align: center;
    margin-top: 1.5px;
    padding: 10px;
}

.sustainability h2{
    color: rgb(201, 113, 128);
    margin-bottom: 20px;
}
.sustainability p{
    color: black;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 40px 20px;
    text-align: left;
}
.faq h2{
    color: rgb(201, 113, 128);
}
.faq details {
    margin: 10px 0;
    background: #ffe5d9;
    padding: 10px;
    border-radius: 5px;
}
.contact {
    padding: 20px;
    background: rgb(255, 196, 178);
    text-align: center;
    margin-bottom: -38px;
}
.contact h2{
    margin-top: 10px;
    color: rgb(201, 113, 128);
    font-weight: 800;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 50%;
    margin: 10px 0;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background-color: #45a049;
}

.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}