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

body{
    font-family:'Poppins', sans-serif;
    background:linear-gradient(135deg,#FFFFFF,#FFFFFF);
    color:#000;
    line-height:1.7;
    overflow-x:hidden;
}

/* DRIVING */
.driving{
    background:
    linear-gradient(135deg,#FFFFFF,#FFFFFF);
    url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    color:#000;
    text-align:center;
    padding:60px 20px;
    position:relative;
}
@media (max-width:768px){

.driving{
    background-attachment:scroll;
    padding:40px 15px;
}

.driving h1{
    font-size:clamp(20px,5.5vw,26px);
    line-height:1.3;
}

.driving h2{
    font-size:18px;
}


.driving h3,
.driving p,
.driving h4{
    margin:0;
    line-height:1.3;
}

.driving h3,
.driving p{
    font-size:16px !important;
}

.logo-container img{
    max-width:80%;
    height:auto;
}

.section{
    padding:50px 15px;
}

.section h2{
    font-size:22px;
    color:#000;
}

.price-box{
    width:100%;
}

}

.driving::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:80px;
    background:linear-gradient(to top, #f8fafc, transparent);
}

.title-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.logo-container {
    display: flex;
    justify-content: center;   /* centers logos horizontally */
    align-items: center;
    gap: 25px;                 /* space between the logos */
    text-align: center;
    margin-bottom: 18px;
}

.logo-container img {
    height: 90px;              /* adjust size if needed */
}

.pricing-images {
    display: flex;
    justify-content: center;  /* horizontal center */
    align-items: center;      /* vertical (if needed) */
    margin-bottom: 20px;
}

.pricing-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
/* Mobile responsive */
@media (max-width:768px){

.driving h1{
    font-size:clamp(20px,5.5vw,26px);/* 26 */
}

.driving h2{
    font-size:20px; /* 16 */
}

.driving h3{
    font-size:16px; /* 18 */
}

.driving p{
    font-size:16px;
}

.logo-container img{
    height:90px;
}

}

.driving h1{
     font-size:clamp(22px,5vw,42px);
     overflow-wrap:break-word;
}

.driving h2{
    font-size:clamp(18px,3.5vw,28px);
     margin-bottom:15px;
}

.driving h3{
    font-size:clamp(16px,3vw,22px);
    margin-top:0;
}

.driving p{
    font-size:18px;
    margin:0;
}

.driving h4{
    margin:0;
}

/* SECTION */
.section{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
}

.section:nth-child(even){
    background:#ffffff;
}

.section:nth-child(odd){
    background:linear-gradient(180deg,#ffffff,#f4f6f9);
}

.section h2{
    color:#000;
    margin-bottom:25px;
    font-size:28px;
    border-left:5px solid #000;
    padding-left:10px;
}

.card{
    background:#fff;
    padding:25px;
    margin-bottom:25px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

ul{
    padding-left:20px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* FACULTY */
.faculty{
    background:#fafafa;
}

/* PRICING */
.pricing-section{
    padding:90px 20px;
    background:linear-gradient(135deg,#ffffff,#f1f3f8);
    text-align:center;
}

.pricing-section h2{
    color:#000;
    margin-bottom:40px;
}

.price-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.price-box{
    background:#fff;
    padding:35px;
    width:300px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.price-box:hover{
    transform:translateY(-5px);
}

.price-box h2{
    color:#000;
    margin:15px 0;
}

.btn{
    margin-top:20px;
    padding:12px 25px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    font-family:inherit;
    font-size:16px;
    min-height:44px;
}

.btn:hover{
    background:#310c97;
}

.driving h1,
.driving h2{
    line-height:1.1;
    margin:0;
}

.driving h2{
    margin-bottom:18px;
}

/* FOOTER */
footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* ===== Extracted inline styles ===== */

/* Hero: "Limited to 20 Seats" note */
.doe-limited-seats{
    font-style:italic;
    font-weight:normal;
}

/* Programme video section wrapper */
.doe-video-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
}

/* Programme video frame */
.doe-video-frame{
    width:100%;
    max-width:900px;
    aspect-ratio:16/9;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    border-radius:12px;
    overflow:hidden;
}
.doe-video-frame video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    background:#000;
}

/* Programme structure: Day 2 heading */
.doe-day-two-heading{
    margin-top:25px;
}

/* Faculty: first bio paragraph */
.doe-faculty-lead{
    margin-bottom:30px;
}

/* Pricing: contact note below price box */
.doe-contact-note{
    margin-top:40px;
}

/* Footer row: brand line left, workshop credit centre, site credit right */
.doe-footer-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px 28px; flex-wrap: wrap; text-align: left;
}
.doe-footer-credit a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.doe-footer-credit a:hover { opacity: .8; }
@media (max-width: 700px) {
    .doe-footer-row { justify-content: center; text-align: center; }
}
