diff --git a/src/pages/assets/guard-main/list.svg b/src/pages/assets/guard-main/list.svg
deleted file mode 100644
index 516d8b09..00000000
--- a/src/pages/assets/guard-main/list.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/src/pages/guard/guard-main/GuardMainPage.tsx b/src/pages/guard/guard-main/GuardMainPage.tsx
index 75e9e242..a6296987 100644
--- a/src/pages/guard/guard-main/GuardMainPage.tsx
+++ b/src/pages/guard/guard-main/GuardMainPage.tsx
@@ -3,6 +3,7 @@ import { useState } from 'react';
import { GuideLineList } from './components/guideline-list';
import { Header } from './components/header/Header';
import { HelloCallApply } from './components/hello-call-apply';
+import { Box, Text } from '@chakra-ui/react';
import styled from '@emotion/styled';
export const GuardMainPage = () => {
@@ -14,6 +15,25 @@ export const GuardMainPage = () => {
currentSenior={currentSenior}
setCurrentSenior={setCurrentSenior}
/>
+
+
+ 시니어가 사용할 서비스 번호
+
+
+ 010-4163-8098
+
+
@@ -27,3 +47,18 @@ const GuardMainPageLayout = styled.div`
width: 100%;
padding: 0 2rem;
`;
+
+const CallbackNumber = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ border-radius: 20px;
+ max-width: 338px;
+ padding: 0.5rem;
+ background-color: var(--color-primary);
+ color: white;
+ font-weight: bold;
+ margin-top: 1rem;
+`;
diff --git a/src/pages/guard/guard-main/components/header/Header.tsx b/src/pages/guard/guard-main/components/header/Header.tsx
index 9ebbd697..641beeb9 100644
--- a/src/pages/guard/guard-main/components/header/Header.tsx
+++ b/src/pages/guard/guard-main/components/header/Header.tsx
@@ -2,7 +2,6 @@ import { ChangeEvent, Dispatch, SetStateAction } from 'react';
import { Link } from 'react-router-dom';
import { RouterPath } from '@/app/routes';
-import IconList from '@/pages/assets/guard-main/list.svg';
import IconUser from '@/pages/assets/shared/user.svg';
import { HEADER_HEIGHT, useAllSeniorInfo } from '@/shared';
import { Flex, Image, Select } from '@chakra-ui/react';
@@ -22,7 +21,6 @@ export const Header = ({ currentSenior, setCurrentSenior }: HeaderProps) => {
return (
-