/* General Section Styling */
.custom-websites {
    background: linear-gradient(135deg, #1a1f25 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 2rem;
    font-family: 'Arial', sans-serif;
}

.website-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e67e22, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1.3;
}

.website-header p {
    font-size: 1.3rem;
    color: #b0b0c8;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Section Styling */
.steps-section {
    text-align: center;
}

.steps-section h3 {
    font-size: 2.4rem;
    color: #f1c40f;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.4);
}

.step-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 1.1rem;
    color: #dcdde1;
    line-height: 1.6;
}

/* Icon Styling */
.step-card .step-icon {
    font-size: 3.5rem;
    color: #f1c40f;
    margin-bottom: 1rem;
}

/* Website Types Section */
.website-types-section {
    margin-top: 4rem;
    text-align: center;
}

.website-types-section h3 {
    font-size: 2.4rem;
    color: #f1c40f;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.custom-websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.website-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.website-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f1c40f;
}

.website-card h4 {
    font-size: 1.6rem;
    color: #e67e22;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-list li {
    font-size: 1.1rem;
    color: #dcdde1;
    margin-bottom: 0.8rem;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f1c40f;
    font-size: 1.2rem;
}

/* Ensure uniform placement of price-info */
.price-info {
    margin-top: auto; /* Push price-info to the bottom */
    padding: 0.8rem 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: auto;
}

.price-info span {
    font-weight: bold;
    color: #ffffff;
}

.currency-selector {
    font-size: 1rem;
    color: #ffffff;
    background: #000000;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.currency-selector:hover {
    background: #142b79;
}

/* Ensure cards stretch evenly regardless of content */
.website-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
    min-height: 380px; /* Set a minimum height to align all cards */
}



/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    margin: 4rem auto;
    max-width: 1200px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h3 {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #f1c40f, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #f1c40f;
    font-weight: 500;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 2rem;
    color: #dcdde1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #f1c40f;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.feedback-section {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: #b0b0c8;
}

/* Call-to-Action Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, #e67e22, #f1c40f);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.4);
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    color: #333;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #3498db;
    color: #fff;
    transform: scale(1.1);
}
