/* Base Styles */
:root {
    --primary-color: #d62828;
    --primary-dark: #b21e1e;
    --primary-light: #e05757;
    --secondary-color: #003049;
    --accent-color: #f77f00;
    --text-color: #333333;
    --light-text: #777777;
    --bg-color: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #eaeaea;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --border-color: #dddddd;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-size-base: 16px;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #004166;
    color: white;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-right: 20px;
}

.btn-back i {
    margin-right: 5px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a.active, nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active:after, nav ul li a:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

nav ul li a i {
    margin-right: 5px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* Popular Pizzas Section */
.popular-pizzas {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.popular-pizzas h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pizza-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.pizza-slider::-webkit-scrollbar {
    display: none;
}

.pizza-card {
    min-width: 300px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pizza-card:hover {
    transform: translateY(-10px);
}

.pizza-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pizza-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.pizza-card p {
    padding: 0 20px;
    color: var(--light-text);
}

.pizza-card .price {
    display: block;
    padding: 0 20px 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Admin Panel Section */
.admin-panel {
    padding: 80px 0;
    background-color: white;
}

.admin-panel h2 {
    text-align: center;
    margin-bottom: 20px;
}

.admin-panel p {
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-text);
}

.admin-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.admin-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: 0;
    left: 20px;
    color: var(--bg-dark);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--bg-light);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: white;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 20px;
}

.blog-preview > p {
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-text);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-card-content p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
}

.blog-cta {
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
}

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--warning-color);
    color: var(--text-color);
}

.btn-cookie.reject {
    background-color: var(--error-color);
    color: white;
}

.cookie-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-content a:hover {
    color: white;
}

/* Blog Page Styles */
.blog-hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
}

.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-image {
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-meta {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-sidebar {
    padding: 0 0 80px;
}

.sidebar-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sidebar-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.categories ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.categories ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

.categories ul li a:hover {
    color: var(--primary-color);
}

.categories ul li a span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.popular-post-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.popular-post-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.popular-post-content h4 a:hover {
    color: var(--primary-color);
}

.popular-post-content span {
    font-size: 0.8rem;
    color: var(--light-text);
}

/* Blog Post Styles */
.blog-post-hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--light-text);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
}

.blog-post-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-post-content {
    padding: 80px 0;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-main-content {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

article {
    padding: 40px;
}

article h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

article h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

article p {
    margin-bottom: 20px;
    line-height: 1.8;
}

article ul, article ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

article ul li, article ol li {
    margin-bottom: 10px;
}

.post-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.post-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
}

.post-quote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-style: normal;
}

.post-image-section {
    margin: 40px 0;
}

.post-image-section img {
    width: 100%;
    border-radius: var(--border-radius);
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.post-author {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.post-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-info h3 {
    margin-bottom: 10px;
}

.author-info p {
    margin-bottom: 0;
    color: var(--light-text);
}

.post-share {
    margin-top: 40px;
    text-align: center;
}

.post-share h3 {
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-share {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-share i {
    margin-right: 5px;
}

.btn-share.facebook {
    background-color: #3b5998;
}

.btn-share.twitter {
    background-color: #1da1f2;
}

.btn-share.pinterest {
    background-color: #bd081c;
}

.btn-share.email {
    background-color: #777777;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 1px solid var(--border-color);
}

.post-nav-links {
    display: flex;
    gap: 20px;
}

.prev-post, .next-post {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.prev-post i {
    margin-right: 5px;
}

.next-post i {
    margin-left: 5px;
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.related-post {
    display: flex;
    margin-bottom: 15px;
}

.related-post:last-child {
    margin-bottom: 0;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.related-post h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.related-post h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* About Page Styles */
.about-hero {
    background-color: var(--bg-light);
    background-image: url('images/44.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 48, 73, 0.7);
}

.about-hero-content {
    position: relative;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.about-hero-content p {
    font-size: 1.3rem;
}

.about-intro {
    padding: 80px 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-intro-text h2 {
    margin-bottom: 30px;
}

.about-intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.founder-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.founder-signature img {
    height: 60px;
    margin-right: 20px;
}

.founder-signature p {
    margin-bottom: 0;
    font-weight: 600;
}

.about-mission {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mission-content {
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 30px;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 50px;
}

.mission-statement p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
}

.value-item p {
    color: var(--light-text);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--light-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    color: var(--light-text);
    margin-bottom: 10px;
    padding: 0 20px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.our-process {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.our-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 30px;
    z-index: 2;
}

.step-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 0;
    color: var(--light-text);
}

.achievements {
    padding: 80px 0;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-10px);
}

.achievement-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.achievement-item h3 {
    margin-bottom: 10px;
}

.achievement-item p {
    color: var(--light-text);
    margin-bottom: 0;
}

.commitment {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.commitment-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.commitment-text h2 {
    margin-bottom: 30px;
}

.commitment-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.commitment-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.commitment-text ul li:before {
    content: '•';
    position: absolute;
    left: -10px;
    color: var(--primary-color);
}

.commitment-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonials-about {
    padding: 80px 0;
}

.testimonials-about h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    min-width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: 0;
    left: 20px;
    color: var(--bg-dark);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--bg-light);
    text-align: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    margin-bottom: 10px;
    color: var(--light-text);
}

.rating {
    color: var(--accent-color);
}

.locations {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.locations h2 {
    text-align: center;
    margin-bottom: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.location-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.location-item h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-item p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location-item p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.service-areas {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-areas h3 {
    margin-bottom: 20px;
}

.join-us {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
}

.join-us-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-us-content h2 {
    color: white;
    margin-bottom: 20px;
}

.join-us-content p {
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 10px;
}

.info-item p {
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-note {
    font-size: 0.9rem;
    color: var(--light-text) !important;
}

.social-contact h3 {
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form button {
    grid-column: span 2;
    justify-self: center;
    min-width: 200px;
}

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i:before {
    content: '\f068';
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
}

.modal-content i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
    }
    
    .about-intro-content, 
    .commitment-content {
        grid-template-columns: 1fr;
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background-color: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
        padding: 80px 40px 40px;
    }
    
    nav.open {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        justify-content: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: 1;
    }
    
    .pizza-slider, 
    .testimonial-slider {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .pizza-slider .pizza-card {
        min-width: 250px;
    }
    
    .testimonial-slider .testimonial-slide {
        min-width: 280px;
    }
    
    .blog-card-image img {
        height: 180px;
    }
    
    .blog-cards {
        grid-template-columns: 1fr;
    }
    
    .popular-pizzas {
        padding: 60px 0;
    }
    
    .features, 
    .testimonials, 
    .blog-preview {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}
