 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Hero Section */
header {
    background-color: #fff;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero {
    background-image: url('./imgs/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

.tagline {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    text-align: center;
}

.support-heading {
    font-size: 32px;
    margin-bottom: 30px;
}

.support-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.guide-heading {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 50px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.guide-box {
    text-align: left;
    padding: 20px;
}

.guide-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.guide-box p {
    font-size: 15px;
}

/* Who We Work With */
.who-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.who-heading {
    font-size: 32px;
    margin-bottom: 30px;
}

.who-tagline {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.who-text {
    max-width: 700px;
    margin: 0 auto 50px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-box {
    text-align: left;
}

.client-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.client-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.client-box p {
    font-size: 14px;
}

/* Promise Section */
.promise-section {
    padding: 80px 0;
    text-align: center;
}

.promise-heading {
    font-size: 32px;
    margin-bottom: 30px;
}

.promise-tagline {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.promise-text {
    max-width: 700px;
    margin: 0 auto 40px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-box {
    text-align: left;
    padding: 20px;
}

.promise-box h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #9a2828;
}

.promise-box p {
    font-size: 14px;
}

/* What to Expect Section */
.expect-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.expect-heading {
    font-size: 32px;
    margin-bottom: 30px;
}

.expect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.expect-text {
    padding-right: 20px;
}

.expect-image img {
    max-width: 100%;
    height: auto;
}

/* Insights Section */
.insights-section {
    padding: 60px 0;
}

.insights-heading {
    font-size: 32px;
    margin-bottom: 10px;
}

.insights-subheading {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.article-box {
    margin-bottom: 30px;
}

.article-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.article-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-box p {
    font-size: 14px;
    color: #666;
}

/* Common Mistakes Section */
.mistakes-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.mistakes-heading {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.mistakes-subheading {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
    color: #666;
    text-transform: uppercase;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mistake-box {
    padding: 20px;
}

.mistake-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #9a2828;
}

.mistake-box p {
    font-size: 14px;
}

/* Before Viewing Section */
.before-viewing {
    padding: 60px 0;
}

.viewing-heading {
    font-size: 24px;
    margin-bottom: 20px;
}

.viewing-subheading {
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.viewing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.viewing-text {
    padding-right: 20px;
}

.viewing-image img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #222;
    color: white;
    text-align: center;
}

.contact-heading {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-subheading {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 14px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #333;
    color: white;
}

button {
    background-color: #9a2828;
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #222;
    color: white;
    font-size: 14px;
}

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

.footer-links a {
    margin-left: 20px;
    color: #ccc;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
}

.cookie-heading {
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-text {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 12px 24px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.accept-btn {
    background-color: #9a2828;
    color: white;
    border: none;
    width: 100%;
}

.learn-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .client-grid, 
    .promise-grid,
    .mistakes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expect-content,
    .viewing-content {
        grid-template-columns: 1fr;
    }

    .articles-grid,
    .client-grid, 
    .promise-grid,
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
}